| 491 | } |
| 492 | |
| 493 | bool Building_Impl::setRelocatable(bool relocatable) { |
| 494 | bool result = false; |
| 495 | if (relocatable) { |
| 496 | result = setString(OS_BuildingFields::Relocatable, "True"); |
| 497 | } else { |
| 498 | result = setString(OS_BuildingFields::Relocatable, "False"); |
| 499 | } |
| 500 | OS_ASSERT(result); |
| 501 | return result; |
| 502 | } |
| 503 | |
| 504 | void Building_Impl::resetRelocatable() { |
| 505 | bool result = setString(OS_BuildingFields::Relocatable, ""); |
no outgoing calls
no test coverage detected