COMP: isolate include for coordSet writer

This commit is contained in:
Mark Olesen
2022-01-20 17:09:24 +01:00
parent b874dc74b0
commit 97f452d53a
8 changed files with 16 additions and 11 deletions

View File

@ -11,8 +11,8 @@
#include "checkTools.H"
#include "functionObject.H"
#include "vtkSetWriter.H"
#include "vtkSurfaceWriter.H"
#include "writer.H"
#include "cyclicACMIPolyPatch.H"
#include "Time.H"

View File

@ -1,12 +1,13 @@
#include "label.H"
#include "HashSet.H"
#include "labelVector.H"
#include "writer.H"
namespace Foam
{
// Forward Declarations
class polyMesh;
class wedgePolyPatch;
template<class T> class writer;
class surfaceWriter;
label findOppositeWedge(const polyMesh&, const wedgePolyPatch&);

View File

@ -36,10 +36,12 @@ License
#include "tetWedgeMatcher.H"
#include "tetMatcher.H"
#include "IOmanip.H"
#include "OFstream.H"
#include "pointSet.H"
#include "faceSet.H"
#include "cellSet.H"
#include "Time.H"
#include "writer.H"
#include "surfaceWriter.H"
#include "syncTools.H"
#include "globalIndex.H"

View File

@ -1,15 +1,16 @@
#include "scalar.H"
#include "indirectPrimitivePatch.H"
#include "writer.H"
namespace Foam
{
// Forward Declarations
class polyMesh;
class pointSet;
class faceSet;
class cellSet;
class fileName;
class polyMesh;
template<class T> class writer;
class surfaceWriter;
void printMeshStats(const polyMesh& mesh, const bool allTopology);

View File

@ -6,7 +6,7 @@
\\/ M anipulation |
-------------------------------------------------------------------------------
Copyright (C) 2011-2016 OpenFOAM Foundation
Copyright (C) 2017-2020 OpenCFD Ltd.
Copyright (C) 2017-2022 OpenCFD Ltd.
-------------------------------------------------------------------------------
License
This file is part of OpenFOAM.
@ -36,6 +36,7 @@ License
#include "IOmanip.H"
#include "emptyPolyPatch.H"
#include "processorPolyPatch.H"
#include "vtkSetWriter.H"
#include "vtkSurfaceWriter.H"
#include "checkTools.H"
#include "treeBoundBox.H"

View File

@ -1,11 +1,12 @@
#include "label.H"
#include "autoPtr.H"
#include "writer.H"
namespace Foam
{
// Forward Declarations
class polyMesh;
class pointSet;
template<class T> class writer;
class surfaceWriter;
template<class PatchType>

View File

@ -32,6 +32,7 @@ License
#include "Time.H"
#include "DynamicField.H"
#include "PatchTools.H"
#include "writer.H"
#include "triSurfaceMesh.H"
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

View File

@ -56,19 +56,19 @@ SourceFiles
\*---------------------------------------------------------------------------*/
#ifndef searchableSurfaces_H
#define searchableSurfaces_H
#ifndef Foam_searchableSurfaces_H
#define Foam_searchableSurfaces_H
#include "searchableSurface.H"
#include "labelPair.H"
#include "writer.H"
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
namespace Foam
{
// Forward declarations
// Forward Declarations
template<class T> class writer;
class triSurface;
/*---------------------------------------------------------------------------*\
@ -292,8 +292,6 @@ public:
//- Return reference to searchableSurface by name.
searchableSurface& operator[](const word&);
};