| 247 | } |
| 248 | |
| 249 | bool discardSpacesBefore(std::istringstream& ss, char nextChar) |
| 250 | { |
| 251 | Utils::eatwhitespace(ss); |
| 252 | return Utils::eatcharacter(ss, nextChar); |
| 253 | } |
| 254 | |
| 255 | template <typename T> |
| 256 | void parsePair(std::istringstream& ss, double& low, double& high) |