Completed standardisation of the class declaration section comments to correspond to the foamNewSource template

This commit is contained in:
Henry Weller
2019-06-21 22:45:47 +01:00
parent 5dbbac7c86
commit 5c188ddce7
325 changed files with 3038 additions and 2873 deletions

View File

@ -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;
};