- 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
19 lines
306 B
C++
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>>&
|
|
);
|
|
}
|