##// END OF EJS Templates
Some minor improvements on plugin loading:...
Some minor improvements on plugin loading: SciQLOP now looks recursively into a list of path and only tries to load dynamic library files. Signed-off-by: Alexis Jeandet <alexis.jeandet@member.fsf.org>

File last commit:

r65:75b3ca8ef471
r609:7c40e9303976
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