Utilities: standardised the class declaration section comments to correspond to the foamNewSource template

This commit is contained in:
Henry Weller
2019-06-19 17:53:10 +01:00
parent 0101722b0f
commit e599162b09
40 changed files with 364 additions and 402 deletions

View File

@ -76,13 +76,6 @@ class mergePolyMesh
// Private Member Functions
//- Disallow default bitwise copy construction
mergePolyMesh(const mergePolyMesh&) = delete;
//- Disallow default bitwise assignment
void operator=(const mergePolyMesh&) = delete;
//- Return patch index given a name and type
label patchIndex(const polyPatch&);
@ -101,6 +94,9 @@ public:
//- Construct from IOobject
mergePolyMesh(const IOobject& io);
//- Disallow default bitwise copy construction
mergePolyMesh(const mergePolyMesh&) = delete;
//- Destructor
virtual ~mergePolyMesh()
@ -114,6 +110,12 @@ public:
//- Merge meshes
void merge();
// Member Operators
//- Disallow default bitwise assignment
void operator=(const mergePolyMesh&) = delete;
};

View File

@ -64,15 +64,6 @@ class mirrorFvMesh
autoPtr<labelList> pointMapPtr_;
// Private Member Functions
//- Disallow default bitwise copy construction
mirrorFvMesh(const mirrorFvMesh&) = delete;
//- Disallow default bitwise assignment
void operator=(const mirrorFvMesh&) = delete;
public:
@ -81,6 +72,9 @@ public:
//- Construct from IOobject
mirrorFvMesh(const IOobject& io, const word& dictName);
//- Disallow default bitwise copy construction
mirrorFvMesh(const mirrorFvMesh&) = delete;
//- Destructor
~mirrorFvMesh();
@ -105,6 +99,12 @@ public:
{
return pointMapPtr_();
}
// Member Operators
//- Disallow default bitwise assignment
void operator=(const mirrorFvMesh&) = delete;
};

View File

@ -168,12 +168,6 @@ class meshDualiser
boolList& donePFaces // pFaces visited
) const;
//- Disallow default bitwise copy construction
meshDualiser(const meshDualiser&) = delete;
//- Disallow default bitwise assignment
void operator=(const meshDualiser&) = delete;
public:
@ -186,6 +180,9 @@ public:
//- Construct from mesh
meshDualiser(const polyMesh&);
//- Disallow default bitwise copy construction
meshDualiser(const meshDualiser&) = delete;
// Member Functions
@ -228,7 +225,6 @@ public:
// Edit
//- Insert all changes into meshMod to convert the polyMesh into
// its dual.
// featureFaces : faces where we want a point at the face centre
@ -248,6 +244,12 @@ public:
const labelList& multiCellFeaturePoints,
polyTopoChange& meshMod
);
// Member Operators
//- Disallow default bitwise assignment
void operator=(const meshDualiser&) = delete;
};
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //