| 42 | } |
| 43 | |
| 44 | boost::optional<ScheduleDay> ScheduleWeek_Impl::sundaySchedule() const { |
| 45 | boost::optional<ScheduleDay> result; |
| 46 | OptionalWorkspaceObject schedule = getTarget(OS_Schedule_WeekFields::SundaySchedule_DayName); |
| 47 | if (schedule) { |
| 48 | result = schedule->optionalCast<ScheduleDay>(); |
| 49 | } |
| 50 | return result; |
| 51 | } |
| 52 | |
| 53 | boost::optional<ScheduleDay> ScheduleWeek_Impl::mondaySchedule() const { |
| 54 | boost::optional<ScheduleDay> result; |
no outgoing calls