| 71 | |
| 72 | |
| 73 | void ExecutePython(const std::vector<std::string>& python) |
| 74 | { |
| 75 | Base::InterpreterSingleton is = Base::InterpreterSingleton(); |
| 76 | |
| 77 | for (auto const& line : python) { |
| 78 | is.runInteractiveString(line.c_str()); |
| 79 | } |
| 80 | } |
| 81 | |
| 82 | |
| 83 | void rectangle(double height, double width, const char* name) |
no test coverage detected