| 60 | } |
| 61 | |
| 62 | Py::String ModelPy::getLibraryRoot() const |
| 63 | { |
| 64 | auto library = getModelPtr()->getLibrary(); |
| 65 | if (!library->isLocal()) { |
| 66 | return ""; |
| 67 | } |
| 68 | return Py::String(library ? library->getDirectoryPath().toStdString() : ""); |
| 69 | } |
| 70 | |
| 71 | Py::Object ModelPy::getLibraryIcon() const |
| 72 | { |
nothing calls this directly
no test coverage detected