| 67 | } |
| 68 | |
| 69 | SIBR_SYSTEM_EXPORT std::string getFileName(const std::string & str) |
| 70 | { |
| 71 | const std::string::size_type pos = str.find_last_of("/\\"); |
| 72 | if (pos == std::string::npos) { |
| 73 | return str; |
| 74 | } |
| 75 | return str.substr(pos+1); |
| 76 | } |
| 77 | |
| 78 | bool strContainsOnlyDigits(const std::string& str) |
| 79 | { |
nothing calls this directly
no outgoing calls
no test coverage detected