| 221 | void EmbeddedPython::hello() const { py::print("Hello, World!"); } |
| 222 | |
| 223 | void EmbeddedPython::exec(const std::string &pystring) const { py::exec(pystring); } |
| 224 | void EmbeddedPython::eval_file(const std::string &pyfile) const { py::eval_file(pyfile); } |
| 225 | |
| 226 | nlohmann::json EmbeddedPython::eval(const std::string &pystring) const { |
no outgoing calls