| 819 | } |
| 820 | |
| 821 | pair<string, string> SplitPathFileName(char* fullPath) { |
| 822 | string fP(fullPath); |
| 823 | return SplitPathFileName(fP); |
| 824 | } |
| 825 | |
| 826 | pair<string, string> SplitPathFileName(string const& fullPath) { |
| 827 | size_t pos = fullPath.find_last_of("/\\"); |
no outgoing calls
no test coverage detected