| 114 | } |
| 115 | |
| 116 | boost::optional<ScheduleDay> ScheduleWeek_Impl::summerDesignDaySchedule() const { |
| 117 | boost::optional<ScheduleDay> result; |
| 118 | OptionalWorkspaceObject schedule = getTarget(OS_Schedule_WeekFields::SummerDesignDaySchedule_DayName); |
| 119 | if (schedule) { |
| 120 | result = schedule->optionalCast<ScheduleDay>(); |
| 121 | } |
| 122 | return result; |
| 123 | } |
| 124 | |
| 125 | boost::optional<ScheduleDay> ScheduleWeek_Impl::winterDesignDaySchedule() const { |
| 126 | boost::optional<ScheduleDay> result; |
no outgoing calls