| 565 | } |
| 566 | |
| 567 | boost::optional<EpwDesignCondition> EpwDesignCondition::fromDesignConditionsString(const std::string& line) { |
| 568 | std::vector<std::string> strings = splitString(line, ','); |
| 569 | return fromDesignConditionsStrings(strings); |
| 570 | } |
| 571 | |
| 572 | ASHRAEHoFVintage EpwDesignCondition::ashraeHoFVersion() const { |
| 573 | return m_ashraeHoFVersion; |
nothing calls this directly
no test coverage detected