| 208 | } |
| 209 | |
| 210 | int ScheduleFixedInterval_Impl::intervalLength() const { |
| 211 | boost::optional<int> value = getInt(OS_Schedule_FixedIntervalFields::IntervalLength, true); |
| 212 | if (value) { |
| 213 | return value.get(); |
| 214 | } |
| 215 | return 0; |
| 216 | } |
| 217 | |
| 218 | double ScheduleFixedInterval_Impl::outOfRangeValue() const { |
| 219 | boost::optional<double> value = getDouble(OS_Schedule_FixedIntervalFields::OutOfRangeValue, true); |