openfoam/applications/utilities/mesh/manipulation/checkMesh/checkTopology.H
2022-01-21 09:19:50 +01:00

30 lines
590 B
C++

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