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