Standardised the class declaration section comments to correspond to the foamNewSource template
This commit is contained in:
@ -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;
|
||||
};
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user