mirror of
https://github.com/mappu/miqt.git
synced 2024-12-22 08:58:37 +00:00
19 lines
498 B
C++
19 lines
498 B
C++
#include <QThreadStorageData>
|
|
#include <qthreadstorage.h>
|
|
#include "gen_qthreadstorage.h"
|
|
#include "_cgo_export.h"
|
|
|
|
void QThreadStorageData_new(QThreadStorageData* param1, QThreadStorageData** outptr_QThreadStorageData) {
|
|
QThreadStorageData* ret = new QThreadStorageData(*param1);
|
|
*outptr_QThreadStorageData = ret;
|
|
}
|
|
|
|
void QThreadStorageData_Delete(QThreadStorageData* self, bool isSubclass) {
|
|
if (isSubclass) {
|
|
delete dynamic_cast<QThreadStorageData*>( self );
|
|
} else {
|
|
delete self;
|
|
}
|
|
}
|
|
|