| 77 | } |
| 78 | |
| 79 | std::string removeQuotes(std::string const &str) |
| 80 | { |
| 81 | std::string res = str; |
| 82 | if (startsWith(res, "\"")) |
| 83 | res = res.substr(1, res.length()); |
| 84 | if (endsWith(res, "\"")) |
| 85 | res = res.substr(0, res.length() - 1); |
| 86 | return res; |
| 87 | } |
| 88 | |
| 89 | std::string getFileName(std::string const &path) |
| 90 | { |
nothing calls this directly
no test coverage detected