| 359 | } |
| 360 | |
| 361 | boost::optional<DayOfWeek> WeatherFile_Impl::startDayOfWeek() const { |
| 362 | boost::optional<std::string> result = getString(OS_WeatherFileFields::StartDayofWeek, false, true); |
| 363 | if (!result) { |
| 364 | return boost::none; |
| 365 | } |
| 366 | return openstudio::DayOfWeek{*result}; |
| 367 | } |
| 368 | |
| 369 | } // namespace detail |
| 370 |
no outgoing calls