| 935 | } |
| 936 | |
| 937 | void RefrigerationWalkIn_Impl::removeFromSecondarySystem() { |
| 938 | boost::optional<RefrigerationSecondarySystem> refrigerationSecondarySystem = secondarySystem(); |
| 939 | if (refrigerationSecondarySystem) { |
| 940 | refrigerationSecondarySystem.get().removeWalkin(this->getObject<RefrigerationWalkIn>()); |
| 941 | } |
| 942 | } |
| 943 | |
| 944 | bool RefrigerationWalkIn_Impl::addToCompressorRack(RefrigerationCompressorRack& compressorRack) { |
| 945 | return compressorRack.addWalkin(this->getObject<RefrigerationWalkIn>()); |
nothing calls this directly
no test coverage detected