miqt/qt/gen_qthreadstorage.cpp

25 lines
470 B
C++
Raw Normal View History

#include <QThreadStorageData>
#include <qthreadstorage.h>
2024-08-29 19:01:51 +12:00
#include "gen_qthreadstorage.h"
#ifdef __cplusplus
extern "C" {
#endif
#ifdef __cplusplus
} /* extern C */
#endif
2024-12-07 17:15:57 +13:00
QThreadStorageData* QThreadStorageData_new(QThreadStorageData* param1) {
return new QThreadStorageData(*param1);
}
2024-11-19 19:29:06 +13:00
void QThreadStorageData_Delete(QThreadStorageData* self, bool isSubclass) {
if (isSubclass) {
delete dynamic_cast<QThreadStorageData*>( self );
} else {
delete self;
}
}