MCPcopy Create free account
hub / github.com/NatLabRockies/OpenStudio / setRelocatable

Method setRelocatable

src/model/Building.cpp:493–502  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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, "");

Callers 2

setRelocatableNoFailMethod · 0.80
mergeBuildingMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected