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

This commit is contained in:
Henry Weller
2019-06-19 15:01:35 +01:00
parent 4d297126d9
commit 213319ae30
165 changed files with 933 additions and 772 deletions

View File

@ -139,12 +139,6 @@ private:
// Private Member Functions
//- Disallow default bitwise copy construction
ensightMesh(const ensightMesh&) = delete;
//- Disallow default bitwise assignment
void operator=(const ensightMesh&) = delete;
void writePoints
(
const scalarField& pointsComponent,
@ -270,6 +264,9 @@ public:
const bool binary
);
//- Disallow default bitwise copy construction
ensightMesh(const ensightMesh&) = delete;
//- Destructor
~ensightMesh();
@ -378,6 +375,11 @@ public:
Ostream& ensightCaseFile
) const;
// Member Operators
//- Disallow default bitwise assignment
void operator=(const ensightMesh&) = delete;
};