| 98 | } |
| 99 | |
| 100 | void FileUtils::addAbsolutePath(const std::string& path) |
| 101 | { |
| 102 | if (path.empty()) |
| 103 | { |
| 104 | return; |
| 105 | } |
| 106 | |
| 107 | std::string newPath = path; |
| 108 | addSlashToPath(newPath); |
| 109 | |
| 110 | mSearchPaths.push_back(newPath); |
| 111 | } |
| 112 | |
| 113 | void FileUtils::addRelativePath(const std::string& relPath) |
| 114 | { |
nothing calls this directly
no test coverage detected