| 1722 | } |
| 1723 | |
| 1724 | bool EpwDataPoint::setMonth(int month) { |
| 1725 | if (1 > month || 12 < month) { |
| 1726 | LOG_FREE(Error, "openstudio.EpwFile", "Month value " << month << " out of range"); |
| 1727 | return false; |
| 1728 | } |
| 1729 | m_month = month; |
| 1730 | return true; |
| 1731 | } |
| 1732 | |
| 1733 | bool EpwDataPoint::setMonth(const std::string& month) { |
| 1734 | bool ok; |
no test coverage detected