| 202 | } |
| 203 | |
| 204 | int ScheduleFixedInterval_Impl::startDay() const { |
| 205 | boost::optional<int> value = getInt(OS_Schedule_FixedIntervalFields::StartDay, true); |
| 206 | OS_ASSERT(value); |
| 207 | return value.get(); |
| 208 | } |
| 209 | |
| 210 | int ScheduleFixedInterval_Impl::intervalLength() const { |
| 211 | boost::optional<int> value = getInt(OS_Schedule_FixedIntervalFields::IntervalLength, true); |