mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
IOOutputFilter: Updated the signature of the 'write' function to correspond to the new functionObject
This commit is contained in:
@ -122,9 +122,9 @@ bool Foam::IOOutputFilter<OutputFilter>::read()
|
|||||||
|
|
||||||
|
|
||||||
template<class OutputFilter>
|
template<class OutputFilter>
|
||||||
void Foam::IOOutputFilter<OutputFilter>::write()
|
bool Foam::IOOutputFilter<OutputFilter>::write(const bool postProcess)
|
||||||
{
|
{
|
||||||
OutputFilter::write();
|
return OutputFilter::write(postProcess);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -126,7 +126,7 @@ public:
|
|||||||
using regIOobject::write;
|
using regIOobject::write;
|
||||||
|
|
||||||
//- Sample and write
|
//- Sample and write
|
||||||
virtual void write();
|
virtual bool write(const bool postProcess = false);
|
||||||
|
|
||||||
//- Update for changes of mesh
|
//- Update for changes of mesh
|
||||||
virtual void updateMesh(const mapPolyMesh& mpm);
|
virtual void updateMesh(const mapPolyMesh& mpm);
|
||||||
|
|||||||
Reference in New Issue
Block a user