##// END OF EJS Templates
Add intersect méthode on variable and sqpDateTime...
Add intersect méthode on variable and sqpDateTime Remove dateTime variable in the contains method

File last commit:

r65:75b3ca8ef471
r258:00cdbd31ff7e
Show More
IPlugin.h
20 lines | 347 B | text/x-c | CLexer
Alexandre Leroux
Define main plugin interface
r65 #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