| 67 | } |
| 68 | |
| 69 | static bool fileExists(const std::string &path) { |
| 70 | std::ifstream file(path.c_str(), std::ios::binary); |
| 71 | return file.good(); |
| 72 | } |
| 73 | |
| 74 | static std::string normalizePath(std::string path) { |
| 75 | std::replace(path.begin(), path.end(), '\\', '/'); |
no outgoing calls
no test coverage detected