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

@ -63,18 +63,6 @@ class vtkMesh
//- Current cellSet (or empty)
const word setName_;
// //- Current decomposition of topology
// mutable autoPtr<vtkTopo> topoPtr_;
// Private Member Functions
//- Disallow default bitwise copy construction
vtkMesh(const vtkMesh&) = delete;
//- Disallow default bitwise assignment
void operator=(const vtkMesh&) = delete;
public:
@ -84,6 +72,9 @@ public:
//- Construct from components
vtkMesh(fvMesh& baseMesh, const word& setName = "");
//- Disallow default bitwise copy construction
vtkMesh(const vtkMesh&) = delete;
// Member Functions
@ -106,16 +97,6 @@ public:
return setName_.size();
}
// //- topology
// const vtkTopo& topo() const
// {
// if (topoPtr_.empty())
// {
// topoPtr_.reset(new vtkTopo(mesh()));
// }
// return topoPtr_();
// }
//- Access either mesh or submesh
const fvMesh& mesh() const
{
@ -129,18 +110,6 @@ public:
}
}
// //- Number of field cells
// label nFieldCells() const
// {
// return topo().vertLabels().size();
// }
//
// //- Number of field points
// label nFieldPoints() const
// {
// return mesh().nPoints() + topo().addPointCellLabels().size();
// }
// Edit
@ -164,6 +133,12 @@ public:
return fld;
}
}
// Member Operators
//- Disallow default bitwise assignment
void operator=(const vtkMesh&) = delete;
};