MCPcopy Create free account
hub / github.com/NatLabRockies/OpenStudio / setMinute

Method setMinute

src/utilities/filetypes/EpwFile.cpp:1793–1800  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1791}
1792
1793bool 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
1802bool EpwDataPoint::setMinute(const std::string& minute) {
1803 bool ok;

Callers 1

fromEpwStringsMethod · 0.80

Calls 1

stringToIntegerFunction · 0.85

Tested by

no test coverage detected