mirror of https://gitlab.com/cppit/jucipp
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
335 B
14 lines
335 B
|
7 years ago
|
#pragma once
|
||
|
|
#include "python_bind.h"
|
||
|
|
|
||
|
|
namespace Python {
|
||
|
|
class Interpreter {
|
||
|
|
public:
|
||
|
|
pybind11::module static add_module(const std::string &module_name);
|
||
|
|
pybind11::module static reload_module(pybind11::module &module);
|
||
|
|
pybind11::object static error();
|
||
|
|
~Interpreter();
|
||
|
|
Interpreter();
|
||
|
|
};
|
||
|
|
}; // namespace Python
|