##// END OF EJS Templates
Fix the problem of calling the zoom at wheel event on the color scale
Fix the problem of calling the zoom at wheel event on the color scale

File last commit:

r65:75b3ca8ef471
r1330:ed0f1486704f
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