miqt/qt6/gen_qcontiguouscache.cpp

29 lines
657 B
C++
Raw Normal View History

2024-10-20 18:21:03 +13:00
#include <QContiguousCacheData>
#include <qcontiguouscache.h>
#include "gen_qcontiguouscache.h"
#ifdef __cplusplus
extern "C" {
#endif
#ifdef __cplusplus
} /* extern C */
#endif
2024-10-20 18:21:03 +13:00
QContiguousCacheData* QContiguousCacheData_AllocateData(ptrdiff_t size, ptrdiff_t alignment) {
return QContiguousCacheData::allocateData((qsizetype)(size), (qsizetype)(alignment));
}
void QContiguousCacheData_FreeData(QContiguousCacheData* data) {
QContiguousCacheData::freeData(data);
}
2024-11-19 19:29:06 +13:00
void QContiguousCacheData_Delete(QContiguousCacheData* self, bool isSubclass) {
if (isSubclass) {
delete dynamic_cast<QContiguousCacheData*>( self );
} else {
delete self;
}
2024-10-20 18:21:03 +13:00
}