mirror of
https://github.com/mappu/miqt.git
synced 2025-01-21 22:20:38 +00:00
21 lines
311 B
C++
21 lines
311 B
C++
#include <QLinkedListData>
|
|
#include <qlinkedlist.h>
|
|
#include "gen_qlinkedlist.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
} /* extern C */
|
|
#endif
|
|
|
|
QLinkedListData* QLinkedListData_new() {
|
|
return new QLinkedListData();
|
|
}
|
|
|
|
void QLinkedListData_Delete(QLinkedListData* self) {
|
|
delete self;
|
|
}
|
|
|