##// END OF EJS Templates
Wrapper prototype working, with all kind of Serie...
Wrapper prototype working, with all kind of Serie Signed-off-by: Alexis Jeandet <alexis.jeandet@member.fsf.org>

File last commit:

r1389:80acb196a347
r1479:704e0f1deb02
Show More
GenericWSPlugin.h
25 lines | 515 B | text/x-c | CLexer
#ifndef GENERICWSPLUGIN_H
#define GENERICWSPLUGIN_H
#include <Plugin/IPlugin.h>
#include <memory>
#ifndef SCIQLOP_PLUGIN_JSON_FILE_PATH
#define SCIQLOP_PLUGIN_JSON_FILE_PATH "genericWS.json"
#endif
class DataSourceItem;
class GenericWS : public QObject, public IPlugin {
Q_OBJECT
Q_INTERFACES(IPlugin)
Q_PLUGIN_METADATA(IID "sciqlop.plugin.IPlugin" FILE SCIQLOP_PLUGIN_JSON_FILE_PATH)
public:
/// @sa IPlugin::initialize()
void initialize() override
{}
};
#endif // GENERICWSPLUGIN_H