| 80 | } |
| 81 | |
| 82 | std::vector<ModelObject> ShadingSurfaceGroup_Impl::children() const { |
| 83 | std::vector<ModelObject> result; |
| 84 | |
| 85 | std::vector<ShadingSurface> shadingSurfaces = this->shadingSurfaces(); |
| 86 | result.insert(result.end(), shadingSurfaces.begin(), shadingSurfaces.end()); |
| 87 | |
| 88 | return result; |
| 89 | } |
| 90 | |
| 91 | std::vector<IddObjectType> ShadingSurfaceGroup_Impl::allowableChildTypes() const { |
| 92 | std::vector<IddObjectType> result; |
nothing calls this directly
no test coverage detected