BioCMAMC-ST
import_py.hpp
1#ifndef __IMPORT_PY_HPP__
2#define __IMPORT_PY_HPP__
3#include <memory>
4
5#define EXPORT __attribute__((visibility("default")))
6
7namespace pybind11
8{
9 class scoped_interpreter;
10} // namespace pybind11
11
12
13using python_interpreter_t =
14 std::unique_ptr<pybind11::scoped_interpreter, void (*)(pybind11::scoped_interpreter*)>;
15
16python_interpreter_t init_python_interpreter();
17
18#endif
Definition import_py.hpp:8