miqt/qt-restricted-extras/qscintilla6/gen_qscidocument.cpp

28 lines
472 B
C++
Raw Normal View History

2024-11-06 18:30:07 +13:00
#include <qscidocument.h>
#include "gen_qscidocument.h"
#ifdef __cplusplus
extern "C" {
#endif
#ifdef __cplusplus
} /* extern C */
#endif
2024-11-06 18:30:07 +13:00
2024-12-07 17:15:57 +13:00
QsciDocument* QsciDocument_new() {
return new QsciDocument();
2024-11-06 18:30:07 +13:00
}
2024-12-07 17:15:57 +13:00
QsciDocument* QsciDocument_new2(QsciDocument* param1) {
return new QsciDocument(*param1);
2024-11-06 18:30:07 +13:00
}
void QsciDocument_OperatorAssign(QsciDocument* self, QsciDocument* param1) {
self->operator=(*param1);
}
void QsciDocument_Delete(QsciDocument* self) {
delete self;
2024-11-06 18:30:07 +13:00
}