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