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

@ -293,13 +293,6 @@ class vtkPVblockMesh
);
//- Disallow default bitwise copy construction
vtkPVblockMesh(const vtkPVblockMesh&) = delete;
//- Disallow default bitwise assignment
void operator=(const vtkPVblockMesh&) = delete;
public:
//- Static data members
@ -316,6 +309,9 @@ public:
vtkPVblockMeshReader* reader
);
//- Disallow default bitwise copy construction
vtkPVblockMesh(const vtkPVblockMesh&) = delete;
//- Destructor
~vtkPVblockMesh();
@ -339,6 +335,11 @@ public:
//- Debug information
void PrintSelf(ostream&, vtkIndent) const;
// Member Operators
//- Disallow default bitwise assignment
void operator=(const vtkPVblockMesh&) = delete;
};