mirror of
https://github.com/mappu/miqt.git
synced 2024-12-22 08:58:37 +00:00
26 lines
591 B
C++
26 lines
591 B
C++
#include <QScopedPointerPodDeleter>
|
|
#include <qscopedpointer.h>
|
|
#include "gen_qscopedpointer.h"
|
|
|
|
#ifndef _Bool
|
|
#define _Bool bool
|
|
#endif
|
|
#include "_cgo_export.h"
|
|
|
|
void QScopedPointerPodDeleter_Cleanup(void* pointer) {
|
|
QScopedPointerPodDeleter::cleanup(pointer);
|
|
}
|
|
|
|
void QScopedPointerPodDeleter_OperatorCall(const QScopedPointerPodDeleter* self, void* pointer) {
|
|
self->operator()(pointer);
|
|
}
|
|
|
|
void QScopedPointerPodDeleter_Delete(QScopedPointerPodDeleter* self, bool isSubclass) {
|
|
if (isSubclass) {
|
|
delete dynamic_cast<QScopedPointerPodDeleter*>( self );
|
|
} else {
|
|
delete self;
|
|
}
|
|
}
|
|
|