| 123 | } |
| 124 | |
| 125 | bool ScheduleRule_Impl::applyMonday() const { |
| 126 | boost::optional<std::string> value = getString(OS_Schedule_RuleFields::ApplyMonday, true); |
| 127 | OS_ASSERT(value); |
| 128 | return openstudio::istringEqual(value.get(), "Yes"); |
| 129 | } |
| 130 | |
| 131 | bool ScheduleRule_Impl::applyTuesday() const { |
| 132 | boost::optional<std::string> value = getString(OS_Schedule_RuleFields::ApplyTuesday, true); |