| 119 | std::vector<std::string> PythonPaths; |
| 120 | |
| 121 | void NotifyInterpreters(unsigned long eventid, void* calldata = nullptr) |
| 122 | { |
| 123 | std::vector<vtkWeakPointer<vtkPythonInterpreter>>::iterator iter; |
| 124 | for (iter = GlobalInterpreters->begin(); iter != GlobalInterpreters->end(); ++iter) |
| 125 | { |
| 126 | if (iter->GetPointer()) |
| 127 | { |
| 128 | iter->GetPointer()->InvokeEvent(eventid, calldata); |
| 129 | } |
| 130 | } |
| 131 | } |
| 132 | |
| 133 | inline void vtkPrependPythonPath(const char* pathtoadd) |
| 134 | { |
no test coverage detected