mirror of
https://github.com/mappu/miqt.git
synced 2025-01-21 22:20:38 +00:00
21 lines
372 B
C++
21 lines
372 B
C++
#include <QScopedPointerPodDeleter>
|
|
#include <qscopedpointer.h>
|
|
#include "gen_qscopedpointer.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
} /* extern C */
|
|
#endif
|
|
|
|
void QScopedPointerPodDeleter_Cleanup(void* pointer) {
|
|
QScopedPointerPodDeleter::cleanup(pointer);
|
|
}
|
|
|
|
void QScopedPointerPodDeleter_Delete(QScopedPointerPodDeleter* self) {
|
|
delete self;
|
|
}
|
|
|