mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
ENH: Added null constructor to phasePropertiesList
This commit is contained in:
@ -27,6 +27,14 @@ License
|
|||||||
|
|
||||||
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
|
Foam::phasePropertiesList::phasePropertiesList()
|
||||||
|
:
|
||||||
|
props_(),
|
||||||
|
phaseTypeNames_(),
|
||||||
|
stateLabels_()
|
||||||
|
{}
|
||||||
|
|
||||||
|
|
||||||
Foam::phasePropertiesList::phasePropertiesList
|
Foam::phasePropertiesList::phasePropertiesList
|
||||||
(
|
(
|
||||||
Istream& is,
|
Istream& is,
|
||||||
|
|||||||
@ -65,7 +65,12 @@ class phasePropertiesList
|
|||||||
|
|
||||||
public:
|
public:
|
||||||
|
|
||||||
//- Constructor
|
// Constructors
|
||||||
|
|
||||||
|
//- Construct null
|
||||||
|
phasePropertiesList();
|
||||||
|
|
||||||
|
//- Construct from components
|
||||||
phasePropertiesList
|
phasePropertiesList
|
||||||
(
|
(
|
||||||
Istream& is,
|
Istream& is,
|
||||||
@ -74,6 +79,7 @@ public:
|
|||||||
const wordList& solidNames
|
const wordList& solidNames
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
||||||
//- Destructor
|
//- Destructor
|
||||||
~phasePropertiesList();
|
~phasePropertiesList();
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user