| 309 | } |
| 310 | |
| 311 | std::string NetworkResourceService::concatenateFolderName(std::vector<std::string> const& folderNames, bool withSlashAtTheEnd) |
| 312 | { |
| 313 | auto result = boost::join(folderNames, FolderSeparator); |
| 314 | if (withSlashAtTheEnd) { |
| 315 | result.append(FolderSeparator); |
| 316 | } |
| 317 | return result; |
| 318 | } |
| 319 | |
| 320 | std::vector<std::string> NetworkResourceService::convertFolderNamesToSettings(std::set<std::vector<std::string>> const& folderNames) |
| 321 | { |
no test coverage detected