| 45 | } |
| 46 | |
| 47 | double AirflowNetworkSpecifiedFlowRate_Impl::airFlowValue() const { |
| 48 | boost::optional<double> value = getDouble(OS_AirflowNetworkSpecifiedFlowRateFields::AirFlowValue, true); |
| 49 | OS_ASSERT(value); |
| 50 | return value.get(); |
| 51 | } |
| 52 | |
| 53 | std::string AirflowNetworkSpecifiedFlowRate_Impl::airFlowUnits() const { |
| 54 | boost::optional<std::string> value = getString(OS_AirflowNetworkSpecifiedFlowRateFields::AirFlowUnits, true); |
no test coverage detected