TazGraph Project v0.1.0
Loading...
Searching...
No Matches
PythonEngine.h
1#pragma once
2
3#include "../../pch.h"
4
6{
7public:
8
9 static PythonInterpreter& getInstance() {
10 static PythonInterpreter instance;
11 return instance;
12 }
13
14 PythonInterpreter(const PythonInterpreter&) = delete;
15 PythonInterpreter& operator=(const PythonInterpreter&) = delete;
16
17private:
18
19 static std::unique_ptr<py::scoped_interpreter> pythonRuntime;
20
22
23
24};
25
Definition PythonEngine.h:6