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