##// END OF EJS Templates
Restored graph D&D and added full screen mode (F11)...
Restored graph D&D and added full screen mode (F11) Signed-off-by: Alexis Jeandet <alexis.jeandet@member.fsf.org>

File last commit:

r1352:fb8f470a1906
r1376:b8327d173f37
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