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