Standardised the class declaration section comments to correspond to the foamNewSource template

This commit is contained in:
Henry Weller
2019-06-19 16:45:21 +01:00
parent 213319ae30
commit 0101722b0f
80 changed files with 719 additions and 628 deletions

View File

@ -186,12 +186,6 @@ class polyMeshFilter
labelList& origToCurrentPointMap
) const;
//- Disallow default bitwise copy construction
polyMeshFilter(const polyMeshFilter&) = delete;
//- Disallow default bitwise assignment
void operator=(const polyMeshFilter&) = delete;
public:
@ -215,6 +209,9 @@ public:
const dictionary& dict
);
//- Disallow default bitwise copy construction
polyMeshFilter(const polyMeshFilter&) = delete;
//- Destructor
~polyMeshFilter();
@ -255,6 +252,12 @@ public:
//- Filter edges only.
label filterEdges(const label nOriginalBadFaces);
// Member Operators
//- Disallow default bitwise assignment
void operator=(const polyMeshFilter&) = delete;
};