##// END OF EJS Templates
Added more features in DateTimeRange to prepare variable synchronization...
Added more features in DateTimeRange to prepare variable synchronization DateTimeRange and helpers has to ease any operation on time ranges to allow more complex operations between variables. Signed-off-by: Alexis Jeandet <alexis.jeandet@member.fsf.org>

File last commit:

r0:86b06c4cec3c
r8:69bf3d2aeca6
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