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