mirror of
https://github.com/mappu/miqt.git
synced 2024-12-22 08:58:37 +00:00
22 lines
392 B
C++
22 lines
392 B
C++
#include <QLinkedListData>
|
|
#include <qlinkedlist.h>
|
|
#include "gen_qlinkedlist.h"
|
|
|
|
#ifndef _Bool
|
|
#define _Bool bool
|
|
#endif
|
|
#include "_cgo_export.h"
|
|
|
|
QLinkedListData* QLinkedListData_new() {
|
|
return new QLinkedListData();
|
|
}
|
|
|
|
void QLinkedListData_Delete(QLinkedListData* self, bool isSubclass) {
|
|
if (isSubclass) {
|
|
delete dynamic_cast<QLinkedListData*>( self );
|
|
} else {
|
|
delete self;
|
|
}
|
|
}
|
|
|