| 27 | TemperatureEnthalpy::TemperatureEnthalpy(double temperature, double enthalpy) : m_temperature(temperature), m_enthalpy(enthalpy) {} |
| 28 | |
| 29 | double TemperatureEnthalpy::temperature() const { |
| 30 | return m_temperature; |
| 31 | } |
| 32 | |
| 33 | double TemperatureEnthalpy::enthalpy() const { |
| 34 | return m_enthalpy; |
no outgoing calls