##// END OF EJS Templates
[WIP] new generic WS plugin and few other fixes...
[WIP] new generic WS plugin and few other fixes Signed-off-by: Alexis Jeandet <alexis.jeandet@member.fsf.org>

File last commit:

r1352:fb8f470a1906
r1352:fb8f470a1906
Show More
GenericWSPlugin.h
24 lines | 509 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