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

@ -55,15 +55,6 @@ class ensightBinaryStream
autoPtr<std::ofstream> str_;
// Private Member Functions
//- Disallow default bitwise copy construction
ensightBinaryStream(const ensightBinaryStream&) = delete;
//- Disallow default bitwise assignment
void operator=(const ensightBinaryStream&) = delete;
public:
// Constructors
@ -82,6 +73,9 @@ public:
)
{}
//- Disallow default bitwise copy construction
ensightBinaryStream(const ensightBinaryStream&) = delete;
//- Destructor
virtual ~ensightBinaryStream()
@ -141,14 +135,11 @@ public:
write(partI);
}
// Member Operators
// Friend Functions
// Friend Operators
// IOstream Operators
//- Disallow default bitwise assignment
void operator=(const ensightBinaryStream&) = delete;
};