##// END OF EJS Templates
Creates a method (slot) in VisualizationWidget to add the plot menu to a variable menu
Creates a method (slot) in VisualizationWidget to add the plot menu to a variable menu

File last commit:

r65:75b3ca8ef471
r248:5b41c2a03db2
Show More
IPlugin.h
20 lines | 347 B | text/x-c | CLexer
#ifndef SCIQLOP_IPLUGIN_H
#define SCIQLOP_IPLUGIN_H
#include <QString>
#include <QtPlugin>
/**
* @brief Interface for a plugin
*/
class IPlugin {
public:
virtual ~IPlugin() = default;
/// Initializes the plugin
virtual void initialize() = 0;
};
Q_DECLARE_INTERFACE(IPlugin, "sciqlop.plugin.IPlugin")
#endif // SCIQLOP_IPLUGIN_H