##// END OF EJS Templates
simple graph unit test: simple scroll implemented...
simple graph unit test: simple scroll implemented Test does the scroll but shows that GUI scroll may change also Delta T while this shouldn't. Signed-off-by: Alexis Jeandet <alexis.jeandet@member.fsf.org>

File last commit:

r1352:fb8f470a1906
r1361:d94394edced5
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