miqt/qt/gen_qshareddata.cpp

26 lines
454 B
C++
Raw Normal View History

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