| 144 | } |
| 145 | |
| 146 | std::vector<ScheduleTypeKey> FanSystemModel_Impl::getScheduleTypeKeys(const Schedule& schedule) const { |
| 147 | std::vector<ScheduleTypeKey> result; |
| 148 | UnsignedVector fieldIndices = getSourceIndices(schedule.handle()); |
| 149 | UnsignedVector::const_iterator b(fieldIndices.begin()); |
| 150 | UnsignedVector::const_iterator e(fieldIndices.end()); |
| 151 | if (std::find(b, e, OS_Fan_SystemModelFields::AvailabilityScheduleName) != e) { |
| 152 | result.push_back(ScheduleTypeKey("FanSystemModel", "Availability")); |
| 153 | } |
| 154 | return result; |
| 155 | } |
| 156 | |
| 157 | std::vector<ModelObject> FanSystemModel_Impl::children() const { |
| 158 | std::vector<ModelObject> result; |
nothing calls this directly
no test coverage detected