| 77 | } |
| 78 | |
| 79 | std::vector<ScheduleTypeKey> Lights_Impl::getScheduleTypeKeys(const Schedule& schedule) const { |
| 80 | std::vector<ScheduleTypeKey> result; |
| 81 | UnsignedVector fieldIndices = getSourceIndices(schedule.handle()); |
| 82 | UnsignedVector::const_iterator b(fieldIndices.begin()); |
| 83 | UnsignedVector::const_iterator e(fieldIndices.end()); |
| 84 | if (std::find(b, e, OS_LightsFields::ScheduleName) != e) { |
| 85 | result.push_back(ScheduleTypeKey("Lights", "Lighting")); |
| 86 | } |
| 87 | return result; |
| 88 | } |
| 89 | |
| 90 | bool Lights_Impl::hardSize() { |
| 91 | boost::optional<Space> space = this->space(); |
nothing calls this directly
no test coverage detected