TazGraph Project
v0.1.0
Loading...
Searching...
No Matches
TazGraphEngine
src
PythonEngine
PythonEngine.h
1
#pragma once
2
3
#include "../../pch.h"
4
5
class
PythonInterpreter
6
{
7
public
:
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
17
private
:
18
19
static
std::unique_ptr<py::scoped_interpreter> pythonRuntime;
20
21
PythonInterpreter
();
22
23
24
};
25
PythonInterpreter
Definition
PythonEngine.h:6
Generated by
1.9.8