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

@ -68,13 +68,6 @@ class edgeStats
direction getNormalDir(const twoDPointCorrector*) const;
//- Disallow default bitwise copy construction
edgeStats(const edgeStats&) = delete;
//- Disallow default bitwise assignment
void operator=(const edgeStats&) = delete;
public:
// Static Data Members
@ -91,11 +84,20 @@ public:
//- Construct from mesh and corrector
edgeStats(const polyMesh& mesh, const twoDPointCorrector* );
//- Disallow default bitwise copy construction
edgeStats(const edgeStats&) = delete;
// Member Functions
//- Calculate minimum edge length and print
scalar minLen(Ostream& os) const;
// Member Operators
//- Disallow default bitwise assignment
void operator=(const edgeStats&) = delete;
};