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

@ -96,13 +96,6 @@ class createShellMesh
);
//- Disallow default bitwise copy construction
createShellMesh(const createShellMesh&) = delete;
//- Disallow default bitwise assignment
void operator=(const createShellMesh&) = delete;
public:
//- Runtime type information
@ -119,6 +112,9 @@ public:
const labelList& regionPoints
);
//- Disallow default bitwise copy construction
createShellMesh(const createShellMesh&) = delete;
// Member Functions
@ -149,6 +145,10 @@ public:
return faceToEdgeMap_;
}
//- Disallow default bitwise assignment
void operator=(const createShellMesh&) = delete;
//- From region point to patch point.
const labelList& pointToPointMap() const
{
@ -191,6 +191,9 @@ public:
polyTopoChange& meshMod
);
// Member Operators
//- Update any locally stored mesh information.
void updateMesh(const mapPolyMesh&);
};