mirror of
https://github.com/mappu/miqt.git
synced 2025-01-21 22:20:38 +00:00
21 lines
368 B
C++
21 lines
368 B
C++
#include <QThreadStorageData>
|
|
#include <qthreadstorage.h>
|
|
#include "gen_qthreadstorage.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
} /* extern C */
|
|
#endif
|
|
|
|
QThreadStorageData* QThreadStorageData_new(QThreadStorageData* param1) {
|
|
return new QThreadStorageData(*param1);
|
|
}
|
|
|
|
void QThreadStorageData_Delete(QThreadStorageData* self) {
|
|
delete self;
|
|
}
|
|
|