2024-10-20 18:21:03 +13:00
|
|
|
#include <QHashSeed>
|
|
|
|
#include <qhashfunctions.h>
|
|
|
|
#include "gen_qhashfunctions.h"
|
2024-12-11 19:55:47 +13:00
|
|
|
|
|
|
|
#ifndef _Bool
|
|
|
|
#define _Bool bool
|
|
|
|
#endif
|
2024-10-20 18:21:03 +13:00
|
|
|
#include "_cgo_export.h"
|
|
|
|
|
2024-12-07 17:15:57 +13:00
|
|
|
QHashSeed* QHashSeed_new() {
|
|
|
|
return new QHashSeed();
|
2024-10-20 18:21:03 +13:00
|
|
|
}
|
|
|
|
|
2024-12-07 17:15:57 +13:00
|
|
|
QHashSeed* QHashSeed_new2(size_t d) {
|
|
|
|
return new QHashSeed(static_cast<size_t>(d));
|
2024-10-20 18:21:03 +13:00
|
|
|
}
|
|
|
|
|
2025-01-04 12:19:04 +13:00
|
|
|
size_t QHashSeed_ToUnsignedLong(const QHashSeed* self) {
|
|
|
|
return self->operator unsigned long();
|
|
|
|
}
|
|
|
|
|
2024-10-20 18:21:03 +13:00
|
|
|
QHashSeed* QHashSeed_GlobalSeed() {
|
|
|
|
return new QHashSeed(QHashSeed::globalSeed());
|
|
|
|
}
|
|
|
|
|
|
|
|
void QHashSeed_SetDeterministicGlobalSeed() {
|
|
|
|
QHashSeed::setDeterministicGlobalSeed();
|
|
|
|
}
|
|
|
|
|
|
|
|
void QHashSeed_ResetRandomGlobalSeed() {
|
|
|
|
QHashSeed::resetRandomGlobalSeed();
|
|
|
|
}
|
|
|
|
|
2024-11-19 19:29:06 +13:00
|
|
|
void QHashSeed_Delete(QHashSeed* self, bool isSubclass) {
|
|
|
|
if (isSubclass) {
|
|
|
|
delete dynamic_cast<QHashSeed*>( self );
|
|
|
|
} else {
|
|
|
|
delete self;
|
|
|
|
}
|
2024-10-20 18:21:03 +13:00
|
|
|
}
|
|
|
|
|