mirror of
https://github.com/mappu/miqt.git
synced 2024-12-22 00:48:38 +00:00
27 lines
583 B
C++
27 lines
583 B
C++
#include <QPropertyProxyBindingData>
|
|
#include <QUntypedPropertyData>
|
|
#include <qpropertyprivate.h>
|
|
#include "gen_qpropertyprivate.h"
|
|
|
|
#ifndef _Bool
|
|
#define _Bool bool
|
|
#endif
|
|
#include "_cgo_export.h"
|
|
|
|
void QUntypedPropertyData_Delete(QUntypedPropertyData* self, bool isSubclass) {
|
|
if (isSubclass) {
|
|
delete dynamic_cast<QUntypedPropertyData*>( self );
|
|
} else {
|
|
delete self;
|
|
}
|
|
}
|
|
|
|
void QPropertyProxyBindingData_Delete(QPropertyProxyBindingData* self, bool isSubclass) {
|
|
if (isSubclass) {
|
|
delete dynamic_cast<QPropertyProxyBindingData*>( self );
|
|
} else {
|
|
delete self;
|
|
}
|
|
}
|
|
|