src/postProcessing/functionObjects: Moving the functionObjects into the "functionObjects" namespace
This commit is contained in:
@ -81,6 +81,9 @@ class dictionary;
|
||||
class polyMesh;
|
||||
class mapPolyMesh;
|
||||
|
||||
namespace functionObjects
|
||||
{
|
||||
|
||||
/*---------------------------------------------------------------------------*\
|
||||
Class partialWrite Declaration
|
||||
\*---------------------------------------------------------------------------*/
|
||||
@ -91,7 +94,7 @@ protected:
|
||||
|
||||
// Private data
|
||||
|
||||
//- Name of this set of partialWrite
|
||||
//- Name of this partialWrite functionObject
|
||||
word name_;
|
||||
|
||||
const objectRegistry& obr_;
|
||||
@ -168,6 +171,16 @@ public:
|
||||
const bool loadFromFiles = false
|
||||
);
|
||||
|
||||
//- Construct on free-store and return pointer if successful
|
||||
// otherwise return a null-pointer
|
||||
static autoPtr<partialWrite> New
|
||||
(
|
||||
const word& name,
|
||||
const objectRegistry&,
|
||||
const dictionary&,
|
||||
const bool loadFromFiles = false
|
||||
);
|
||||
|
||||
|
||||
//- Destructor
|
||||
virtual ~partialWrite();
|
||||
@ -208,6 +221,7 @@ public:
|
||||
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
} // End namespace functionObjects
|
||||
} // End namespace Foam
|
||||
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
Reference in New Issue
Block a user