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

@ -132,15 +132,6 @@ protected:
virtual const wordList& codeKeys() const;
private:
//- Disallow default bitwise copy construction
codedFunctionObject(const codedFunctionObject&) = delete;
//- Disallow default bitwise assignment
void operator=(const codedFunctionObject&) = delete;
public:
//- Runtime type information
@ -157,6 +148,9 @@ public:
const dictionary& dict
);
//- Disallow default bitwise copy construction
codedFunctionObject(const codedFunctionObject&) = delete;
//- Destructor
virtual ~codedFunctionObject();
@ -183,6 +177,12 @@ public:
//- Read and set the function object if its data have changed
virtual bool read(const dictionary&);
// Member Operators
//- Disallow default bitwise assignment
void operator=(const codedFunctionObject&) = delete;
};