Utilities: standardised the class declaration section comments to correspond to the foamNewSource template

This commit is contained in:
Henry Weller
2019-06-19 17:53:10 +01:00
parent 0101722b0f
commit e599162b09
40 changed files with 364 additions and 402 deletions

View File

@ -74,12 +74,6 @@ class hexBlock
// Private Member Functions
//- Disallow default bitwise copy construction
hexBlock(const hexBlock&) = delete;
//- Disallow default bitwise assignment
void operator=(const hexBlock&) = delete;
//- Vertex addressing inside the block
inline label vtxLabel(label i, label j, label k) const;
@ -91,6 +85,10 @@ public:
//- Construct from components
hexBlock(const label nx, const label ny, const label nz);
//- Disallow default bitwise copy construction
hexBlock(const hexBlock&) = delete;
// Member Functions
//- Number of points
@ -145,6 +143,12 @@ public:
//- Read block points
void readPoints(Istream&);
// Member Operators
//- Disallow default bitwise assignment
void operator=(const hexBlock&) = delete;
};

View File

@ -141,13 +141,6 @@ class sammMesh
// Private Member Functions
//- Disallow default bitwise copy construction
sammMesh(const sammMesh&) = delete;
//- Disallow default bitwise assignment
void operator=(const sammMesh&) = delete;
//- Fill SAMM lookup tables
void fillSammCellShapeTable();
void fillSammAddressingTable();
@ -230,6 +223,9 @@ public:
const scalar scaleFactor
);
//- Disallow default bitwise copy construction
sammMesh(const sammMesh&) = delete;
//- Destructor
~sammMesh();
@ -239,6 +235,12 @@ public:
//- Write mesh
void writeMesh();
// Member Operators
//- Disallow default bitwise assignment
void operator=(const sammMesh&) = delete;
};

View File

@ -185,13 +185,6 @@ class starMesh
// Private Member Functions
//- Disallow default bitwise copy construction
starMesh(const starMesh&) = delete;
//- Disallow default bitwise assignment
void operator=(const starMesh&) = delete;
//- Read fixed format vertex label
static label readVtxLabel(IFstream&);
@ -295,6 +288,9 @@ public:
const scalar scaleFactor
);
//- Disallow default bitwise copy construction
starMesh(const starMesh&) = delete;
//- Destructor
~starMesh();
@ -304,6 +300,12 @@ public:
//- Write mesh
void writeMesh();
// Member Operators
//- Disallow default bitwise assignment
void operator=(const starMesh&) = delete;
};