openfoam/applications/utilities/mesh/manipulation/checkMesh/checkTopology.H
2017-09-07 09:42:03 +01:00

29 lines
502 B
C++

#include "label.H"
#include "autoPtr.H"
#include "writer.H"
namespace Foam
{
class polyMesh;
class surfaceWriter;
class pointSet;
template<class PatchType>
void checkPatch
(
const bool allGeometry,
const word& name,
const PatchType& pp,
pointSet& points
);
label checkTopology
(
const polyMesh&,
const bool,
const bool,
const autoPtr<surfaceWriter>&,
const autoPtr<writer<scalar>>&
);
}