| 29 | |
| 30 | std::string getPathForOS(const char* file); |
| 31 | inline std::string getPathForOS(const std::string& file) {return getPathForOS(file.c_str());} |
| 32 | |
| 33 | std::string getFileExtension(const char* file); |
| 34 | inline std::string getFileExtension(const std::string& file) {return getFileExtension(file.c_str());} |
no test coverage detected