##// END OF EJS Templates
Ported MockPlugin to new Variable2 impl and added dummy python plugin...
Ported MockPlugin to new Variable2 impl and added dummy python plugin Signed-off-by: Alexis Jeandet <alexis.jeandet@member.fsf.org>

File last commit:

r1423:31110df2feb2
r1423:31110df2feb2
Show More
python_providers.cpp
9 lines | 192 B | text/x-c | CppLexer
#include "python_providers.h"
#include <pybind11/embed.h>
namespace py = pybind11;
void PythonProviders::initialize()
{
py::scoped_interpreter guard {};
py::print("Hello, World!");
}