mirror of
https://github.com/mappu/miqt.git
synced 2024-12-22 08:58:37 +00:00
18 lines
312 B
C++
18 lines
312 B
C++
#include <QLinkedListData>
|
|
#include "qlinkedlist.h"
|
|
|
|
#include "gen_qlinkedlist.h"
|
|
|
|
extern "C" {
|
|
extern void miqt_exec_callback(void* cb, int argc, void* argv);
|
|
}
|
|
|
|
QLinkedListData* QLinkedListData_new() {
|
|
return new QLinkedListData();
|
|
}
|
|
|
|
void QLinkedListData_Delete(QLinkedListData* self) {
|
|
delete self;
|
|
}
|
|
|