Remove functions which just explicitly call base class functions
This commit is contained in:
parent
801334c84e
commit
02f9497b20
10 changed files with 0 additions and 39 deletions
|
|
@ -85,7 +85,6 @@ protected:
|
|||
//@{
|
||||
|
||||
public:
|
||||
virtual void initThermo();
|
||||
virtual void initThermoXML(XML_Node& phaseNode, const std::string& id);
|
||||
|
||||
//! Create and install a constant volume pressure dependent
|
||||
|
|
|
|||
|
|
@ -84,7 +84,6 @@ protected:
|
|||
*/
|
||||
//@{
|
||||
virtual void initThermo();
|
||||
virtual void initThermoXML(XML_Node& phaseNode, const std::string& id);
|
||||
//@}
|
||||
|
||||
private:
|
||||
|
|
|
|||
|
|
@ -53,16 +53,6 @@ protected:
|
|||
virtual void _updateStandardStateThermo();
|
||||
|
||||
public:
|
||||
/*! @name Initialization Methods - For Internal use
|
||||
* The following methods are used in the process of constructing the phase
|
||||
* and setting its parameters from a specification in an input file. They
|
||||
* are not normally used in application programs. To see how they are
|
||||
* used, see importPhase().
|
||||
*/
|
||||
//@{
|
||||
virtual void initThermoXML(XML_Node& phaseNode, const std::string& id);
|
||||
//@}
|
||||
|
||||
//! Create and install an ideal gas standard state manager for one species
|
||||
//! within this object
|
||||
/*!
|
||||
|
|
|
|||
|
|
@ -85,7 +85,6 @@ public:
|
|||
*/
|
||||
//@{
|
||||
|
||||
virtual void initThermo();
|
||||
virtual void initThermoXML(XML_Node& phaseNode, const std::string& id);
|
||||
//@}
|
||||
|
||||
|
|
|
|||
|
|
@ -107,7 +107,6 @@ public:
|
|||
* To see how they are used, see importPhase().
|
||||
*/
|
||||
//@{
|
||||
virtual void initThermo();
|
||||
virtual void initThermoXML(XML_Node& phaseNode, const std::string& id);
|
||||
virtual PDSS* createInstallPDSS(size_t k, const XML_Node& speciesNode,
|
||||
const XML_Node* const phaseNode_ptr);
|
||||
|
|
|
|||
|
|
@ -89,11 +89,6 @@ void VPSSMgr_ConstVol::getStandardVolumes_ref(doublereal* vol) const
|
|||
}
|
||||
}
|
||||
|
||||
void VPSSMgr_ConstVol::initThermo()
|
||||
{
|
||||
VPSSMgr::initThermo();
|
||||
}
|
||||
|
||||
void VPSSMgr_ConstVol::initThermoXML(XML_Node& phaseNode, const std::string& id)
|
||||
{
|
||||
VPSSMgr::initThermoXML(phaseNode, id);
|
||||
|
|
|
|||
|
|
@ -134,11 +134,6 @@ void VPSSMgr_General::getGibbs_ref(doublereal* g) const
|
|||
}
|
||||
}
|
||||
|
||||
void VPSSMgr_General::initThermoXML(XML_Node& phaseNode, const std::string& id)
|
||||
{
|
||||
VPSSMgr::initThermoXML(phaseNode, id);
|
||||
}
|
||||
|
||||
PDSS* VPSSMgr_General::returnPDSS_ptr(size_t k, const XML_Node& speciesNode,
|
||||
const XML_Node* const phaseNode_ptr, bool& doST)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -79,11 +79,6 @@ void VPSSMgr_IdealGas::_updateStandardStateThermo()
|
|||
}
|
||||
}
|
||||
|
||||
void VPSSMgr_IdealGas::initThermoXML(XML_Node& phaseNode, const std::string& id)
|
||||
{
|
||||
VPSSMgr::initThermoXML(phaseNode, id);
|
||||
}
|
||||
|
||||
PDSS* VPSSMgr_IdealGas::createInstallPDSS(size_t k, const XML_Node& speciesNode,
|
||||
const XML_Node* const phaseNode_ptr)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -185,11 +185,6 @@ void VPSSMgr_Water_ConstVol::_updateStandardStateThermo()
|
|||
m_Vss[0] = (m_vptp_ptr->molecularWeight(0) / m_waterSS->density());
|
||||
}
|
||||
|
||||
void VPSSMgr_Water_ConstVol::initThermo()
|
||||
{
|
||||
VPSSMgr::initThermo();
|
||||
}
|
||||
|
||||
void VPSSMgr_Water_ConstVol::initThermoXML(XML_Node& phaseNode,
|
||||
const std::string& id)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -185,11 +185,6 @@ void VPSSMgr_Water_HKFT::_updateStandardStateThermo()
|
|||
}
|
||||
}
|
||||
|
||||
void VPSSMgr_Water_HKFT::initThermo()
|
||||
{
|
||||
VPSSMgr::initThermo();
|
||||
}
|
||||
|
||||
void VPSSMgr_Water_HKFT::initThermoXML(XML_Node& phaseNode,
|
||||
const std::string& id)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue