| 123 | } |
| 124 | |
| 125 | boost::optional<ScheduleDay> ScheduleWeek_Impl::winterDesignDaySchedule() const { |
| 126 | boost::optional<ScheduleDay> result; |
| 127 | OptionalWorkspaceObject schedule = getTarget(OS_Schedule_WeekFields::WinterDesignDaySchedule_DayName); |
| 128 | if (schedule) { |
| 129 | result = schedule->optionalCast<ScheduleDay>(); |
| 130 | } |
| 131 | return result; |
| 132 | } |
| 133 | |
| 134 | boost::optional<ScheduleDay> ScheduleWeek_Impl::customDay1Schedule() const { |
| 135 | boost::optional<ScheduleDay> result; |
no outgoing calls