| 420 | } |
| 421 | |
| 422 | bool Building_Impl::relocatable() const { |
| 423 | boost::optional<std::string> value = getString(OS_BuildingFields::Relocatable, true, true); |
| 424 | OS_ASSERT(value); |
| 425 | return openstudio::istringEqual(value.get(), "True"); |
| 426 | } |
| 427 | |
| 428 | bool Building_Impl::isRelocatableDefaulted() const { |
| 429 | return isEmpty(OS_BuildingFields::Relocatable); |
no test coverage detected