openfoam/applications/utilities/mesh/manipulation/checkMesh/checkTopology.H
Henry Weller aa30d0e7d5 checkMesh: Added option to write sets
- the checking for point-connected multiple-regions now also writes the
    conflicting points to a pointSet
  - with the -writeSets option it now also reconstructs & writes pointSets
2016-07-22 16:53:49 +01:00

19 lines
306 B
C++

#include "label.H"
#include "autoPtr.H"
#include "writer.H"
namespace Foam
{
class polyMesh;
class surfaceWriter;
label checkTopology
(
const polyMesh&,
const bool,
const bool,
const autoPtr<surfaceWriter>&,
const autoPtr<writer<scalar>>&
);
}