| 34 | #include <string.h> |
| 35 | |
| 36 | void StringConverter::splitPath(const std::string &fullPath, std::string &path, std::string &file) { |
| 37 | std::string::size_type end = fullPath.find_last_of("/\\"); |
| 38 | path = fullPath.substr(0, end); |
| 39 | file = fullPath.substr(end + 1); |
| 40 | } |
| 41 | |
| 42 | std::string StringConverter::stringToUpper(const char *str) { |
| 43 | std::string result(str); |
nothing calls this directly
no outgoing calls
no test coverage detected