Skip to content
Snippets Groups Projects
Commit a777715e authored by Andrew Heather's avatar Andrew Heather
Browse files

ENH: Added null constructor to phasePropertiesList

parent ef974adf
Branches
Tags
No related merge requests found
......@@ -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();
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment