Completed standardisation of the class declaration section comments to correspond to the foamNewSource template
This commit is contained in:
@ -91,17 +91,6 @@ protected:
|
||||
virtual bool calc() = 0;
|
||||
|
||||
|
||||
private:
|
||||
|
||||
// Private Member Functions
|
||||
|
||||
//- Disallow default bitwise copy construction
|
||||
fieldsExpression(const fieldsExpression&) = delete;
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const fieldsExpression&) = delete;
|
||||
|
||||
|
||||
public:
|
||||
|
||||
//- Runtime type information
|
||||
@ -120,6 +109,9 @@ public:
|
||||
const word& resultName = word::null
|
||||
);
|
||||
|
||||
//- Disallow default bitwise copy construction
|
||||
fieldsExpression(const fieldsExpression&) = delete;
|
||||
|
||||
|
||||
//- Destructor
|
||||
virtual ~fieldsExpression();
|
||||
@ -138,6 +130,12 @@ public:
|
||||
|
||||
//- Clear the result fields from the objectRegistry
|
||||
virtual bool clear();
|
||||
|
||||
|
||||
// Member Operators
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const fieldsExpression&) = delete;
|
||||
};
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user