| 373 | } |
| 374 | |
| 375 | boost::optional<double> People_Impl::numberOfPeople() const { |
| 376 | OptionalDouble temp = peopleDefinition().numberofPeople(); |
| 377 | if (temp) { |
| 378 | return temp.get() * multiplier(); |
| 379 | } |
| 380 | return temp; |
| 381 | } |
| 382 | |
| 383 | boost::optional<double> People_Impl::peoplePerFloorArea() const { |
| 384 | OptionalDouble temp = peopleDefinition().peopleperSpaceFloorArea(); |
nothing calls this directly
no test coverage detected