| 30 | namespace swig { |
| 31 | |
| 32 | std::unordered_map<string, PyObject*>* PythonTypesMap() { |
| 33 | static auto* m = new std::unordered_map<string, PyObject*>(); |
| 34 | return m; |
| 35 | } |
| 36 | |
| 37 | PyObject* GetRegisteredType(const string& key) { |
| 38 | auto* m = PythonTypesMap(); |
no outgoing calls
no test coverage detected