| 257 | } |
| 258 | |
| 259 | QString InstallationManager::extractFile(std::shared_ptr<const FileTreeEntry> entry, |
| 260 | bool silent) |
| 261 | { |
| 262 | QStringList result = this->extractFiles({entry}, silent); |
| 263 | return result.isEmpty() ? QString() : result[0]; |
| 264 | } |
| 265 | |
| 266 | QStringList InstallationManager::extractFiles( |
| 267 | std::vector<std::shared_ptr<const FileTreeEntry>> const& entries, bool silent) |
nothing calls this directly
no test coverage detected