mirror of
https://github.com/mappu/miqt.git
synced 2024-12-22 17:08:38 +00:00
18 lines
442 B
C++
18 lines
442 B
C++
|
#include <QScopedPointerPodDeleter>
|
||
|
#include <qscopedpointer.h>
|
||
|
#include "gen_qscopedpointer.h"
|
||
|
#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) {
|
||
|
delete self;
|
||
|
}
|
||
|
|