| 210 | } |
| 211 | |
| 212 | void Embedded::exec_fct(const std::string &moduleName, const std::string& fctName) |
| 213 | { |
| 214 | try |
| 215 | { |
| 216 | m_mainScope[moduleName.c_str()].attr(fctName.c_str())(); |
| 217 | } |
| 218 | catch (py::error_already_set const& pythonErr) { std::cout << pythonErr.what(); } |
| 219 | } |
| 220 | |
| 221 | #include "Simulator/SimulatorBase.h" |
| 222 |
no test coverage detected