IOOutputFilter: Updated the signature of the 'write' function to correspond to the new functionObject
This commit is contained in:
parent
4500971827
commit
02f0d095ed
2 changed files with 3 additions and 3 deletions
|
|
@ -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);
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue