mirror of
https://github.com/mappu/miqt.git
synced 2025-01-21 22:20:38 +00:00
22 lines
356 B
C++
22 lines
356 B
C++
#include <QJsonObject>
|
|
#include <QStaticPlugin>
|
|
#include <qplugin.h>
|
|
#include "gen_qplugin.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
} /* extern C */
|
|
#endif
|
|
|
|
QJsonObject* QStaticPlugin_MetaData(const QStaticPlugin* self) {
|
|
return new QJsonObject(self->metaData());
|
|
}
|
|
|
|
void QStaticPlugin_Delete(QStaticPlugin* self) {
|
|
delete self;
|
|
}
|
|
|