| 84 | } |
| 85 | |
| 86 | std::vector<ModelObject> AirLoopHVACOutdoorAirSystem_Impl::children() const { |
| 87 | std::vector<ModelObject> result; |
| 88 | result.push_back(this->getControllerOutdoorAir()); |
| 89 | std::vector<AirflowNetworkDistributionNode> myAFNItems = |
| 90 | getObject<ModelObject>().getModelObjectSources<AirflowNetworkDistributionNode>(AirflowNetworkDistributionNode::iddObjectType()); |
| 91 | result.insert(result.end(), myAFNItems.begin(), myAFNItems.end()); |
| 92 | return result; |
| 93 | } |
| 94 | |
| 95 | // Get all output variable names that could be associated with this object. |
| 96 | const std::vector<std::string>& AirLoopHVACOutdoorAirSystem_Impl::outputVariableNames() const { |
nothing calls this directly
no test coverage detected