MockPlugin.h
25 lines
| 535 B
| text/x-c
|
CLexer
Alexandre Leroux
|
r96 | #ifndef SCIQLOP_MOCKPLUGIN_H | ||
#define SCIQLOP_MOCKPLUGIN_H | ||||
Alexandre Leroux
|
r324 | #include "MockPluginGlobal.h" | ||
Alexandre Leroux
|
r96 | #include <Plugin/IPlugin.h> | ||
#include <QLoggingCategory> | ||||
#include <memory> | ||||
Q_DECLARE_LOGGING_CATEGORY(LOG_MockPlugin) | ||||
class DataSourceItem; | ||||
Alexandre Leroux
|
r324 | class SCIQLOP_MOCKPLUGIN_EXPORT MockPlugin : public QObject, public IPlugin { | ||
Alexandre Leroux
|
r96 | Q_OBJECT | ||
Q_INTERFACES(IPlugin) | ||||
Q_PLUGIN_METADATA(IID "sciqlop.plugin.IPlugin" FILE "mockplugin.json") | ||||
public: | ||||
/// @sa IPlugin::initialize() | ||||
void initialize() override; | ||||
}; | ||||
#endif // SCIQLOP_MOCKPLUGIN_H | ||||