| 1791 | } |
| 1792 | |
| 1793 | bool EpwDataPoint::setMinute(int minute) { |
| 1794 | if (0 > minute || 59 < minute) { |
| 1795 | LOG_FREE(Error, "openstudio.EpwFile", "Minute value " << minute << " out of range"); |
| 1796 | return false; |
| 1797 | } |
| 1798 | m_minute = minute; |
| 1799 | return true; |
| 1800 | } |
| 1801 | |
| 1802 | bool EpwDataPoint::setMinute(const std::string& minute) { |
| 1803 | bool ok; |
no test coverage detected