functionObjects: Separated 'execute' and 'write' functions to simplify support for post-processing

This commit is contained in:
Henry Weller
2016-05-13 09:05:29 +01:00
parent 6164c2f262
commit ded5f35dd6
19 changed files with 599 additions and 64 deletions

View File

@ -77,7 +77,16 @@ Foam::functionObjects::setTimeStepFunctionObject::time() const
bool Foam::functionObjects::setTimeStepFunctionObject::execute
(
const bool forceWrite
const bool postProcess
)
{
return true;
}
bool Foam::functionObjects::setTimeStepFunctionObject::write
(
const bool postProcess
)
{
return true;