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