| 39 | } |
| 40 | |
| 41 | QList<QString> YACReaderLibraries::getNames() const |
| 42 | { |
| 43 | QList<QString> names; |
| 44 | std::transform(libraries.cbegin(), libraries.cend(), std::back_inserter(names), [](const YACReaderLibrary &library) { return library.getName(); }); |
| 45 | return names; |
| 46 | } |
| 47 | |
| 48 | QString YACReaderLibraries::getPath(const QString &name) const |
| 49 | { |
no test coverage detected