| 344 | } |
| 345 | |
| 346 | bool SimulationControl_Impl::setDoZoneSizingCalculation(bool doZoneSizingCalculation) { |
| 347 | bool result = false; |
| 348 | if (doZoneSizingCalculation) { |
| 349 | result = setString(OS_SimulationControlFields::DoZoneSizingCalculation, "Yes"); |
| 350 | } else { |
| 351 | result = setString(OS_SimulationControlFields::DoZoneSizingCalculation, "No"); |
| 352 | } |
| 353 | OS_ASSERT(result); |
| 354 | return result; |
| 355 | } |
| 356 | |
| 357 | void SimulationControl_Impl::resetDoZoneSizingCalculation() { |
| 358 | bool result = setString(OS_SimulationControlFields::DoZoneSizingCalculation, ""); |
no outgoing calls