miqt/qt/gen_qshareddata.cpp

29 lines
472 B
C++
Raw Normal View History

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