| 10 | } |
| 11 | |
| 12 | bool ConfigFile::onlyWhitespace(const std::string &line) const |
| 13 | { |
| 14 | return (line.find_first_not_of(' ') == line.npos); |
| 15 | } |
| 16 | bool ConfigFile::validLine(const std::string &line) const |
| 17 | { |
| 18 | std::string temp = line; |
nothing calls this directly
no outgoing calls
no test coverage detected