| 129 | |
| 130 | |
| 131 | QString GenericImportsModel::getNamespace(SymbolRef sym) const |
| 132 | { |
| 133 | QString name = QString::fromStdString(sym->GetNameSpace().GetString()); |
| 134 | if (name == "BNINTERNALNAMESPACE") |
| 135 | return ""; |
| 136 | return name; |
| 137 | } |
| 138 | |
| 139 | |
| 140 | QString GenericImportsModel::getLibrarySource(SymbolRef sym) const |
nothing calls this directly
no test coverage detected