Files
OpenFOAM-12/applications/utilities/mesh/manipulation/checkMesh/checkTopology.H
Will Bainbridge f4a65fbada sampling: Renamed and moved classes from fileFormats
The writer class has been renamed setWriter in order to clarify its
usage. The coordSet and setWriter classes have been moved into the
sampling library, as this fits their usage.
2021-06-18 13:57:11 +01:00

19 lines
312 B
C++

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