[Transport] Make constructors for MixTransport and MultiTransport public
This commit is contained in:
parent
9f6c9e3a46
commit
bdc568d416
2 changed files with 2 additions and 7 deletions
|
|
@ -52,13 +52,10 @@ namespace Cantera
|
|||
*/
|
||||
class MixTransport : public GasTransport
|
||||
{
|
||||
protected:
|
||||
|
||||
public:
|
||||
//! Default constructor.
|
||||
MixTransport();
|
||||
|
||||
public:
|
||||
|
||||
MixTransport(const MixTransport& right);
|
||||
MixTransport& operator=(const MixTransport& right);
|
||||
virtual Transport* duplMyselfAsTransport() const;
|
||||
|
|
|
|||
|
|
@ -25,15 +25,13 @@ namespace Cantera
|
|||
*/
|
||||
class MultiTransport : public GasTransport
|
||||
{
|
||||
protected:
|
||||
|
||||
public:
|
||||
//! default constructor
|
||||
/*!
|
||||
* @param thermo Optional parameter for the pointer to the ThermoPhase object
|
||||
*/
|
||||
MultiTransport(thermo_t* thermo=0);
|
||||
|
||||
public:
|
||||
virtual int model() const {
|
||||
if (m_mode == CK_Mode) {
|
||||
return CK_Multicomponent;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue