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