AmdaPlugin.h
29 lines
| 631 B
| text/x-c
|
CLexer
Alexandre Leroux
|
r352 | #ifndef SCIQLOP_AMDAPLUGIN_H | ||
#define SCIQLOP_AMDAPLUGIN_H | ||||
#include "AmdaGlobal.h" | ||||
#include <Plugin/IPlugin.h> | ||||
#include <QLoggingCategory> | ||||
#include <memory> | ||||
Q_DECLARE_LOGGING_CATEGORY(LOG_AmdaPlugin) | ||||
Alexandre Leroux
|
r1152 | #ifndef SCIQLOP_PLUGIN_JSON_FILE_PATH | ||
#define SCIQLOP_PLUGIN_JSON_FILE_PATH "amda.json" | ||||
r620 | #endif | |||
Alexandre Leroux
|
r352 | class DataSourceItem; | ||
class SCIQLOP_AMDA_EXPORT AmdaPlugin : public QObject, public IPlugin { | ||||
Q_OBJECT | ||||
Q_INTERFACES(IPlugin) | ||||
Alexandre Leroux
|
r1152 | Q_PLUGIN_METADATA(IID "sciqlop.plugin.IPlugin" FILE SCIQLOP_PLUGIN_JSON_FILE_PATH) | ||
Alexandre Leroux
|
r352 | public: | ||
/// @sa IPlugin::initialize() | ||||
void initialize() override; | ||||
}; | ||||
#endif // SCIQLOP_AMDAPLUGIN_H | ||||