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