| 703 | } |
| 704 | |
| 705 | void RefrigerationAirChiller_Impl::removeFromSystem() { |
| 706 | boost::optional<RefrigerationSystem> refrigerationSystem = system(); |
| 707 | if (refrigerationSystem) { |
| 708 | refrigerationSystem.get().removeAirChiller(this->getObject<RefrigerationAirChiller>()); |
| 709 | } |
| 710 | } |
| 711 | |
| 712 | bool RefrigerationAirChiller_Impl::addToSecondarySystem(RefrigerationSecondarySystem& secondarySystem) { |
| 713 | return secondarySystem.addAirChiller(this->getObject<RefrigerationAirChiller>()); |
no test coverage detected