| 60 | } |
| 61 | |
| 62 | boost::optional<ScheduleDay> ScheduleWeek_Impl::tuesdaySchedule() const { |
| 63 | boost::optional<ScheduleDay> result; |
| 64 | OptionalWorkspaceObject schedule = getTarget(OS_Schedule_WeekFields::TuesdaySchedule_DayName); |
| 65 | if (schedule) { |
| 66 | result = schedule->optionalCast<ScheduleDay>(); |
| 67 | } |
| 68 | return result; |
| 69 | } |
| 70 | |
| 71 | boost::optional<ScheduleDay> ScheduleWeek_Impl::wednesdaySchedule() const { |
| 72 | boost::optional<ScheduleDay> result; |
no outgoing calls