| 433 | } |
| 434 | |
| 435 | boost::optional<EpwDataPoint> EpwDataPoint::fromEpwString(const std::string& line) { |
| 436 | std::vector<std::string> strings = splitString(line, ','); |
| 437 | return fromEpwStrings(strings); |
| 438 | } |
| 439 | |
| 440 | boost::optional<EpwDataPoint> EpwDataPoint::fromEpwStrings(const std::vector<std::string>& strings, bool pedantic) { |
| 441 | EpwDataPoint pt; |
nothing calls this directly
no test coverage detected