| 50 | } |
| 51 | |
| 52 | boost::optional<double> LightsDefinition_Impl::lightingLevel() const { |
| 53 | boost::optional<double> result; |
| 54 | if (istringEqual("LightingLevel", this->designLevelCalculationMethod())) { |
| 55 | result = getDouble(OS_Lights_DefinitionFields::LightingLevel, true); |
| 56 | //OS_ASSERT(result); |
| 57 | } |
| 58 | return result; |
| 59 | } |
| 60 | |
| 61 | boost::optional<double> LightsDefinition_Impl::wattsperSpaceFloorArea() const { |
| 62 | boost::optional<double> result; |
nothing calls this directly
no test coverage detected