| 87 | } |
| 88 | |
| 89 | boost::optional<ScheduleDay> ScheduleWeek_Impl::fridaySchedule() const { |
| 90 | boost::optional<ScheduleDay> result; |
| 91 | OptionalWorkspaceObject schedule = getTarget(OS_Schedule_WeekFields::FridaySchedule_DayName); |
| 92 | if (schedule) { |
| 93 | result = schedule->optionalCast<ScheduleDay>(); |
| 94 | } |
| 95 | return result; |
| 96 | } |
| 97 | |
| 98 | boost::optional<ScheduleDay> ScheduleWeek_Impl::saturdaySchedule() const { |
| 99 | boost::optional<ScheduleDay> result; |
no outgoing calls