| 714 | } |
| 715 | |
| 716 | void RefrigerationAirChiller_Impl::removeFromSecondarySystem() { |
| 717 | boost::optional<RefrigerationSecondarySystem> refrigerationSecondarySystem = secondarySystem(); |
| 718 | if (refrigerationSecondarySystem) { |
| 719 | refrigerationSecondarySystem.get().removeAirChiller(this->getObject<RefrigerationAirChiller>()); |
| 720 | } |
| 721 | } |
| 722 | |
| 723 | bool RefrigerationAirChiller_Impl::addToCompressorRack(RefrigerationCompressorRack& compressorRack) { |
| 724 | return compressorRack.addAirChiller(this->getObject<RefrigerationAirChiller>()); |
nothing calls this directly
no test coverage detected