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

@ -129,12 +129,6 @@ private:
//- Write the requested registered IO object
virtual void writeObject(const regIOobject& obj);
//- Disallow default bitwise copy construction
writeObjects(const writeObjects&) = delete;
//- Disallow default bitwise assignment
void operator=(const writeObjects&) = delete;
public:
@ -152,6 +146,9 @@ public:
const dictionary& dict
);
//- Disallow default bitwise copy construction
writeObjects(const writeObjects&) = delete;
//- Destructor
virtual ~writeObjects();
@ -167,6 +164,12 @@ public:
//- Write the registered objects
virtual bool write();
// Member Operators
//- Disallow default bitwise assignment
void operator=(const writeObjects&) = delete;
};