ENH: streamLine/wallBoundedStreamLine - minor refactoring to enable new derived functionality

This commit is contained in:
Andrew Heather
2018-03-27 11:00:12 +01:00
parent ee2ca640d4
commit 801fb7bd5f
5 changed files with 204 additions and 121 deletions

View File

@ -236,6 +236,20 @@ Foam::functionObjects::wallBoundedStreamLine::wallBoundedStreamLine
}
Foam::functionObjects::wallBoundedStreamLine::wallBoundedStreamLine
(
const word& name,
const Time& runTime,
const dictionary& dict,
const wordList& fieldNames
)
:
streamLineBase(name, runTime, dict, fieldNames)
{
read(dict_);
}
// * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * //
Foam::functionObjects::wallBoundedStreamLine::~wallBoundedStreamLine()