| 1676 | } |
| 1677 | |
| 1678 | void EpwDataPoint::setDate(Date date) { |
| 1679 | m_month = openstudio::month(date.monthOfYear()); |
| 1680 | m_day = date.dayOfMonth(); |
| 1681 | m_year = date.year(); |
| 1682 | } |
| 1683 | |
| 1684 | Time EpwDataPoint::time() const { |
| 1685 | return {0, m_hour, m_minute}; |
nothing calls this directly
no test coverage detected