| 34 | key.erase(key.find_first_of("\t ")); |
| 35 | } |
| 36 | void ConfigFile::extractValue(std::string &value, size_t const &sepPos, const std::string &line) const |
| 37 | { |
| 38 | value = line.substr(sepPos + 1); |
| 39 | value.erase(0, value.find_first_not_of("\t ")); |
| 40 | value.erase(value.find_last_not_of("\t ") + 1); |
| 41 | } |
| 42 | |
| 43 | void ConfigFile::extractContents(const std::string &line) |
| 44 | { |
nothing calls this directly
no outgoing calls
no test coverage detected