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

@ -83,10 +83,6 @@ class multiLevelDecomp
labelField& finalDecomp
);
//- Disallow default bitwise copy construct and assignment
void operator=(const multiLevelDecomp&) = delete;
multiLevelDecomp(const multiLevelDecomp&);
public:
@ -99,6 +95,9 @@ public:
//- Construct given the decomposition dictionary
multiLevelDecomp(const dictionary& decompositionDict);
//- Disallow default bitwise copy construction
multiLevelDecomp(const multiLevelDecomp&) = delete;
//- Destructor
virtual ~multiLevelDecomp()
@ -131,6 +130,12 @@ public:
const pointField& cc,
const scalarField& cWeights
);
// Member Operators
//- Disallow default bitwise assignment
void operator=(const multiLevelDecomp&) = delete;
};