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

@ -91,11 +91,6 @@ class cellSplitter
const Map<labelList>& cellToCells
) const;
//- Disallow default bitwise copy construction
cellSplitter(const cellSplitter&) = delete;
//- Disallow default bitwise assignment
void operator=(const cellSplitter&) = delete;
public:
@ -107,6 +102,9 @@ public:
//- Construct from mesh
cellSplitter(const polyMesh& mesh);
//- Disallow default bitwise copy construction
cellSplitter(const cellSplitter&) = delete;
//- Destructor
~cellSplitter();
@ -135,6 +133,12 @@ public:
{
return addedPoints_;
}
// Member Operators
//- Disallow default bitwise assignment
void operator=(const cellSplitter&) = delete;
};