Standardised the class declaration section comments to correspond to the foamNewSource template

This commit is contained in:
Henry Weller
2019-06-19 15:01:35 +01:00
parent 4d297126d9
commit 213319ae30
165 changed files with 933 additions and 772 deletions

View File

@ -54,14 +54,6 @@ class ensightStream
const fileName name_;
// Private Member Functions
//- Disallow default bitwise copy construction
ensightStream(const ensightStream&) = delete;
//- Disallow default bitwise assignment
void operator=(const ensightStream&) = delete;
public:
@ -73,6 +65,9 @@ public:
name_(f)
{}
//- Disallow default bitwise copy construction
ensightStream(const ensightStream&) = delete;
//- Destructor
virtual ~ensightStream()
@ -99,7 +94,10 @@ public:
virtual void writePartHeader(const label) = 0;
// Member Operators
//- Disallow default bitwise assignment
void operator=(const ensightStream&) = delete;
};