30 lines
590 B
C++
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
|
|
);
|
|
}
|