##// END OF EJS Templates
Updated meson build files...
Updated meson build files Signed-off-by: Alexis Jeandet <alexis.jeandet@member.fsf.org>

File last commit:

r1425:697deb00ef40
r1425:697deb00ef40
Show More
python_providers.h
26 lines | 549 B | text/x-c | CLexer
#ifndef PYTHON_PROVIDERS_H
#define PYTHON_PROVIDERS_H
#include <Plugin/IPlugin.h>
#include <memory>
#ifndef SCIQLOP_PLUGIN_JSON_FILE_PATH
#define SCIQLOP_PLUGIN_JSON_FILE_PATH "python_providers.json"
#endif
class DataSourceItem;
class PythonProviders : public QObject, public IPlugin
{
Q_OBJECT
Q_INTERFACES(IPlugin)
Q_PLUGIN_METADATA(IID "sciqlop.plugin.IPlugin" FILE SCIQLOP_PLUGIN_JSON_FILE_PATH)
public:
/// @sa IPlugin::initialize()
void initialize() override;
~PythonProviders();
};
#endif // PYTHON_PROVIDERS_H