Utilities: standardised the class declaration section comments to correspond to the foamNewSource template
This commit is contained in:
@ -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;
|
||||
};
|
||||
|
||||
|
||||
|
||||
@ -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;
|
||||
};
|
||||
|
||||
|
||||
|
||||
@ -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;
|
||||
};
|
||||
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
Reference in New Issue
Block a user