2024-08-25 16:08:24 +12:00
|
|
|
#include <QLinkedListData>
|
2024-10-16 18:07:56 +13:00
|
|
|
#include <qlinkedlist.h>
|
2024-08-29 19:01:51 +12:00
|
|
|
#include "gen_qlinkedlist.h"
|
2024-09-15 10:29:05 +12:00
|
|
|
#include "_cgo_export.h"
|
2024-08-25 16:08:24 +12:00
|
|
|
|
2024-11-19 19:29:06 +13:00
|
|
|
void QLinkedListData_new(QLinkedListData** outptr_QLinkedListData) {
|
|
|
|
QLinkedListData* ret = new QLinkedListData();
|
|
|
|
*outptr_QLinkedListData = ret;
|
2024-08-25 16:08:24 +12:00
|
|
|
}
|
|
|
|
|
2024-11-19 19:29:06 +13:00
|
|
|
void QLinkedListData_Delete(QLinkedListData* self, bool isSubclass) {
|
|
|
|
if (isSubclass) {
|
|
|
|
delete dynamic_cast<QLinkedListData*>( self );
|
|
|
|
} else {
|
|
|
|
delete self;
|
|
|
|
}
|
2024-08-25 16:08:24 +12:00
|
|
|
}
|
|
|
|
|