| 130 | } |
| 131 | |
| 132 | std::string BaseFileName(const std::string& path) |
| 133 | { |
| 134 | auto lastSlashPos = path.find_last_of("/\\"); |
| 135 | if (lastSlashPos != std::string::npos) |
| 136 | return path.substr(lastSlashPos + 1); |
| 137 | return path; |
| 138 | } |
| 139 | |
| 140 | bool IsSameFolderForFile(Ref<ProjectFile> a, Ref<ProjectFile> b) |
| 141 | { |
no outgoing calls
no test coverage detected