| 96 | } |
| 97 | |
| 98 | boost::optional<ScheduleDay> ScheduleWeek_Impl::saturdaySchedule() const { |
| 99 | boost::optional<ScheduleDay> result; |
| 100 | OptionalWorkspaceObject schedule = getTarget(OS_Schedule_WeekFields::SaturdaySchedule_DayName); |
| 101 | if (schedule) { |
| 102 | result = schedule->optionalCast<ScheduleDay>(); |
| 103 | } |
| 104 | return result; |
| 105 | } |
| 106 | |
| 107 | boost::optional<ScheduleDay> ScheduleWeek_Impl::holidaySchedule() const { |
| 108 | boost::optional<ScheduleDay> result; |
no outgoing calls