##// END OF EJS Templates
Creates enum that represents the value types that can be read in AMDA...
Creates enum that represents the value types that can be read in AMDA This enum is passed in parameter of the reading method to parse the result file according to it

File last commit:

r324:057ef7ee6e0d
r530:a08e6992e146
Show More
MockPlugin.h
25 lines | 535 B | text/x-c | CLexer
Alexandre Leroux
Create mock plugin
r96 #ifndef SCIQLOP_MOCKPLUGIN_H
#define SCIQLOP_MOCKPLUGIN_H
Alexandre Leroux
Adds Q_DECL_EXPORT for Mock plugin
r324 #include "MockPluginGlobal.h"
Alexandre Leroux
Create mock plugin
r96 #include <Plugin/IPlugin.h>
#include <QLoggingCategory>
#include <memory>
Q_DECLARE_LOGGING_CATEGORY(LOG_MockPlugin)
class DataSourceItem;
Alexandre Leroux
Adds Q_DECL_EXPORT for Mock plugin
r324 class SCIQLOP_MOCKPLUGIN_EXPORT MockPlugin : public QObject, public IPlugin {
Alexandre Leroux
Create mock plugin
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