##// END OF EJS Templates
Updates AMDA JSON file to handle spectrograms...
Updates AMDA JSON file to handle spectrograms - Sets "dataType" attribute to "spectrogram" for all products that have the "display_type" attribute set to "spectrogram" - Adds "server" attribute to spectrograms products to indicate that the server to use for these is the Amda test server

File last commit:

r620:3dbb981097b0
r942:131dd68d9046
Show More
MockPlugin.h
29 lines | 625 B | text/x-c | CLexer
#ifndef SCIQLOP_MOCKPLUGIN_H
#define SCIQLOP_MOCKPLUGIN_H
#include "MockPluginGlobal.h"
#include <Plugin/IPlugin.h>
#include <QLoggingCategory>
#include <memory>
#ifndef PLUGIN_JSON_FILE_PATH
#define PLUGIN_JSON_FILE_PATH "mockplugin.json"
#endif
Q_DECLARE_LOGGING_CATEGORY(LOG_MockPlugin)
class DataSourceItem;
class SCIQLOP_MOCKPLUGIN_EXPORT MockPlugin : public QObject, public IPlugin {
Q_OBJECT
Q_INTERFACES(IPlugin)
Q_PLUGIN_METADATA(IID "sciqlop.plugin.IPlugin" FILE PLUGIN_JSON_FILE_PATH)
public:
/// @sa IPlugin::initialize()
void initialize() override;
};
#endif // SCIQLOP_MOCKPLUGIN_H