ENH: Updated function objects

This commit is contained in:
andy
2012-12-13 10:40:38 +00:00
parent 6aba1d08f8
commit 9d5ce4ae76
47 changed files with 120 additions and 120 deletions

View File

@ -408,7 +408,7 @@ void Foam::fieldAverage::updateMesh(const mapPolyMesh&)
}
void Foam::fieldAverage::movePoints(const pointField&)
void Foam::fieldAverage::movePoints(const polyMesh&)
{
// Do nothing
}

View File

@ -116,7 +116,6 @@ SourceFiles
#define fieldAverage_H
#include "volFieldsFwd.H"
#include "pointFieldFwd.H"
#include "Switch.H"
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
@ -130,10 +129,11 @@ class dictionary;
class fieldAverageItem;
template<class Type>
class List;
class polyMesh;
class mapPolyMesh;
/*---------------------------------------------------------------------------*\
Class fieldAverage Declaration
Class fieldAverage Declaration
\*---------------------------------------------------------------------------*/
class fieldAverage
@ -266,15 +266,6 @@ protected:
void readAveragingProperties();
// Functions to be over-ridden from IOoutputFilter class
//- Update mesh
virtual void updateMesh(const mapPolyMesh&);
//- Move points
virtual void movePoints(const Field<point>&);
//- Disallow default bitwise copy construct
fieldAverage(const fieldAverage&);
@ -324,6 +315,12 @@ public:
//- Calculate the field average data and write
virtual void write();
//- Update mesh
virtual void updateMesh(const mapPolyMesh&);
//- Move points
virtual void movePoints(const polyMesh&);
};