#include #include #include "qrandom.h" #include "gen_qrandom.h" #include "_cgo_export.h" QRandomGenerator* QRandomGenerator_new() { return new QRandomGenerator(); } QRandomGenerator* QRandomGenerator_new2(const unsigned int* seedBuffer, size_t lenVal) { return new QRandomGenerator(static_cast(seedBuffer), static_cast(lenVal)); } QRandomGenerator* QRandomGenerator_new3(const unsigned int* begin, const unsigned int* end) { return new QRandomGenerator(static_cast(begin), static_cast(end)); } QRandomGenerator* QRandomGenerator_new4(QRandomGenerator* other) { return new QRandomGenerator(*other); } QRandomGenerator* QRandomGenerator_new5(unsigned int seedValue) { return new QRandomGenerator(static_cast(seedValue)); } void QRandomGenerator_OperatorAssign(QRandomGenerator* self, QRandomGenerator* other) { self->operator=(*other); } unsigned int QRandomGenerator_Generate(QRandomGenerator* self) { return self->generate(); } unsigned long long QRandomGenerator_Generate64(QRandomGenerator* self) { return self->generate64(); } double QRandomGenerator_GenerateDouble(QRandomGenerator* self) { return self->generateDouble(); } double QRandomGenerator_Bounded(QRandomGenerator* self, double highest) { return self->bounded(static_cast(highest)); } unsigned int QRandomGenerator_BoundedWithHighest(QRandomGenerator* self, unsigned int highest) { return self->bounded(static_cast(highest)); } unsigned int QRandomGenerator_Bounded2(QRandomGenerator* self, unsigned int lowest, unsigned int highest) { return self->bounded(static_cast(lowest), static_cast(highest)); } int QRandomGenerator_Bounded3(QRandomGenerator* self, int highest) { return self->bounded(static_cast(highest)); } int QRandomGenerator_Bounded4(QRandomGenerator* self, int lowest, int highest) { return self->bounded(static_cast(lowest), static_cast(highest)); } void QRandomGenerator_Generate2(QRandomGenerator* self, unsigned int* begin, unsigned int* end) { self->generate(static_cast(begin), static_cast(end)); } uint32_t QRandomGenerator_OperatorCall(QRandomGenerator* self) { return self->operator()(); } void QRandomGenerator_Seed(QRandomGenerator* self) { self->seed(); } void QRandomGenerator_Discard(QRandomGenerator* self, unsigned long long z) { self->discard(static_cast(z)); } uint32_t QRandomGenerator_Min() { return QRandomGenerator::min(); } uint32_t QRandomGenerator_Max() { return QRandomGenerator::max(); } QRandomGenerator* QRandomGenerator_System() { return QRandomGenerator::system(); } QRandomGenerator* QRandomGenerator_Global() { return QRandomGenerator::global(); } QRandomGenerator* QRandomGenerator_SecurelySeeded() { QRandomGenerator _ret = QRandomGenerator::securelySeeded(); // Copy-construct value returned type into heap-allocated copy return static_cast(new QRandomGenerator(_ret)); } void QRandomGenerator_Seed1(QRandomGenerator* self, unsigned int s) { self->seed(static_cast(s)); } void QRandomGenerator_Delete(QRandomGenerator* self) { delete self; } QRandomGenerator64* QRandomGenerator64_new() { return new QRandomGenerator64(); } QRandomGenerator64* QRandomGenerator64_new2(const unsigned int* seedBuffer, size_t lenVal) { return new QRandomGenerator64(static_cast(seedBuffer), static_cast(lenVal)); } QRandomGenerator64* QRandomGenerator64_new3(const unsigned int* begin, const unsigned int* end) { return new QRandomGenerator64(static_cast(begin), static_cast(end)); } QRandomGenerator64* QRandomGenerator64_new4(QRandomGenerator* other) { return new QRandomGenerator64(*other); } QRandomGenerator64* QRandomGenerator64_new5(QRandomGenerator64* param1) { return new QRandomGenerator64(*param1); } QRandomGenerator64* QRandomGenerator64_new6(unsigned int seedValue) { return new QRandomGenerator64(static_cast(seedValue)); } unsigned long long QRandomGenerator64_Generate(QRandomGenerator64* self) { return self->generate(); } uint64_t QRandomGenerator64_OperatorCall(QRandomGenerator64* self) { return self->operator()(); } void QRandomGenerator64_Discard(QRandomGenerator64* self, unsigned long long z) { self->discard(static_cast(z)); } uint64_t QRandomGenerator64_Min() { return QRandomGenerator64::min(); } uint64_t QRandomGenerator64_Max() { return QRandomGenerator64::max(); } QRandomGenerator64* QRandomGenerator64_System() { return QRandomGenerator64::system(); } QRandomGenerator64* QRandomGenerator64_Global() { return QRandomGenerator64::global(); } QRandomGenerator64* QRandomGenerator64_SecurelySeeded() { QRandomGenerator64 _ret = QRandomGenerator64::securelySeeded(); // Copy-construct value returned type into heap-allocated copy return static_cast(new QRandomGenerator64(_ret)); } void QRandomGenerator64_OperatorAssign(QRandomGenerator64* self, QRandomGenerator64* param1) { self->operator=(*param1); } void QRandomGenerator64_Delete(QRandomGenerator64* self) { delete self; }