From 1acb00bc9920a01da2fcbed21231fc9984581eab Mon Sep 17 00:00:00 2001 From: Ray Speth Date: Wed, 19 Sep 2018 18:54:01 -0400 Subject: [PATCH] [Transport] Remove unused private members of WaterTransport --- include/cantera/transport/WaterTransport.h | 27 ---------------------- 1 file changed, 27 deletions(-) diff --git a/include/cantera/transport/WaterTransport.h b/include/cantera/transport/WaterTransport.h index de5eb61f9..6a1e0f4f2 100644 --- a/include/cantera/transport/WaterTransport.h +++ b/include/cantera/transport/WaterTransport.h @@ -23,9 +23,6 @@ const int LDIFF_MIXDIFF_FLUXCORRECTED = 1; const int LDIFF_MULTICOMP_STEFANMAXWELL = 2; //! @} -class WaterProps; -class PDSS_Water; - //! Transport Parameters for pure water //! @ingroup tranprops class WaterTransport : public Transport @@ -82,30 +79,6 @@ public: virtual doublereal thermalConductivity(); virtual void init(thermo_t* thermo, int mode=0, int log_level=0); - -private: - //! Pointer to the WaterPropsIAPWS object, which does the actual calculations - //! for the real equation of state - /*! - * This object owns m_sub - */ - mutable WaterPropsIAPWS* m_sub; - - //! Pointer to the WaterProps object - /*! - * This class is used to house several approximation routines for properties - * of water. - * - * This object owns m_waterProps, and the WaterPropsIAPWS object used by - * WaterProps is m_sub, which is defined above. - */ - WaterProps* m_waterProps; - - //! Pressure dependent standard state object for water - /*! - * We assume that species 0 is water, with a PDSS_Water object. - */ - PDSS_Water* m_waterPDSS; }; } #endif