##// END OF EJS Templates
Mostly working Spectrograms...
Mostly working Spectrograms Signed-off-by: Alexis Jeandet <alexis.jeandet@member.fsf.org>

File last commit:

r1430:ecc8b7b09c3d
r1465:42e61e7ce5b3
Show More
python_providers.h
32 lines | 780 B | text/x-c | CLexer
Ported MockPlugin to new Variable2 impl and added dummy python plugin...
r1423 #ifndef PYTHON_PROVIDERS_H
#define PYTHON_PROVIDERS_H
#include <Plugin/IPlugin.h>
Added ultra preliminary version of python providers...
r1428 #include <QUuid>
Ported MockPlugin to new Variable2 impl and added dummy python plugin...
r1423
#include <memory>
Added ultra preliminary version of python providers...
r1428 #include <python_interpreter.h>
Ported MockPlugin to new Variable2 impl and added dummy python plugin...
r1423
#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;
Updated meson build files...
r1425 ~PythonProviders();
Added ultra preliminary version of python providers...
r1428
private:
Added POC AMDA python impl and CDAWEB bits...
r1430 void register_product(const std::vector<PythonInterpreter::product_t>& product_list,
PythonInterpreter::provider_funct_t f);
Added ultra preliminary version of python providers...
r1428 PythonInterpreter _interpreter;
Ported MockPlugin to new Variable2 impl and added dummy python plugin...
r1423 };
#endif // PYTHON_PROVIDERS_H