1#ifndef __IMPORT_PY_HPP__
2#define __IMPORT_PY_HPP__
5#define EXPORT __attribute__((visibility("default")))
9 class scoped_interpreter;
12using python_interpreter_t =
13 std::unique_ptr<pybind11::scoped_interpreter,
14 void (*)(pybind11::scoped_interpreter*)>;
16python_interpreter_t init_python_interpreter();
Definition import_py.hpp:8