| 153 | } |
| 154 | |
| 155 | bool ScheduleRule_Impl::applySaturday() const { |
| 156 | boost::optional<std::string> value = getString(OS_Schedule_RuleFields::ApplySaturday, true); |
| 157 | OS_ASSERT(value); |
| 158 | return openstudio::istringEqual(value.get(), "Yes"); |
| 159 | } |
| 160 | |
| 161 | std::string ScheduleRule_Impl::dateSpecificationType() const { |
| 162 | boost::optional<std::string> value = getString(OS_Schedule_RuleFields::DateSpecificationType, true); |