| 1192 | } |
| 1193 | |
| 1194 | void ThermalZone_Impl::resetZoneControlHumidistat() { |
| 1195 | if (boost::optional<ZoneControlHumidistat> humidistat = this->zoneControlHumidistat()) { |
| 1196 | humidistat->remove(); |
| 1197 | } |
| 1198 | |
| 1199 | setString(OS_ThermalZoneFields::HumidistatName, ""); |
| 1200 | } |
| 1201 | |
| 1202 | /// Combines all spaces referencing this zone into a single space referencing this zone. |
| 1203 | /// If this zone has no spaces referencing it, then an uninitialized optional space is returned. |
nothing calls this directly
no test coverage detected