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 * * * * * * * * * * * * * * //
|
||||
|
||||
Foam::phasePropertiesList::phasePropertiesList()
|
||||
:
|
||||
props_(),
|
||||
phaseTypeNames_(),
|
||||
stateLabels_()
|
||||
{}
|
||||
|
||||
|
||||
Foam::phasePropertiesList::phasePropertiesList
|
||||
(
|
||||
Istream& is,
|
||||
|
||||
@ -65,14 +65,20 @@ class phasePropertiesList
|
||||
|
||||
public:
|
||||
|
||||
//- Constructor
|
||||
phasePropertiesList
|
||||
(
|
||||
Istream& is,
|
||||
const wordList& gasNames,
|
||||
const wordList& liquidNames,
|
||||
const wordList& solidNames
|
||||
);
|
||||
// Constructors
|
||||
|
||||
//- Construct null
|
||||
phasePropertiesList();
|
||||
|
||||
//- Construct from components
|
||||
phasePropertiesList
|
||||
(
|
||||
Istream& is,
|
||||
const wordList& gasNames,
|
||||
const wordList& liquidNames,
|
||||
const wordList& solidNames
|
||||
);
|
||||
|
||||
|
||||
//- Destructor
|
||||
~phasePropertiesList();
|
||||
|
||||
Reference in New Issue
Block a user