Forward compatibility: flex
[foam-extend-3.2.git] / src / surfMesh / MeshedSurfaceProxy / MeshedSurfaceProxy.H
blobc73b8929d015193853ef6c957f9b71117a3d3a08
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | foam-extend: Open Source CFD
4    \\    /   O peration     | Version:     3.2
5     \\  /    A nd           | Web:         http://www.foam-extend.org
6      \\/     M anipulation  | For copyright notice see file Copyright
7 -------------------------------------------------------------------------------
8 License
9     This file is part of foam-extend.
11     foam-extend is free software: you can redistribute it and/or modify it
12     under the terms of the GNU General Public License as published by the
13     Free Software Foundation, either version 3 of the License, or (at your
14     option) any later version.
16     foam-extend is distributed in the hope that it will be useful, but
17     WITHOUT ANY WARRANTY; without even the implied warranty of
18     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
19     General Public License for more details.
21     You should have received a copy of the GNU General Public License
22     along with foam-extend.  If not, see <http://www.gnu.org/licenses/>.
24 Class
25     Foam::MeshedSurfaceProxy
27 Description
28     A proxy for writing MeshedSurface, UnsortedMeshedSurface and surfMesh
29     to various file formats.
31 SourceFiles
32     MeshedSurfaceProxy.C
33     MeshedSurfaceProxyCore.C
35 \*---------------------------------------------------------------------------*/
37 #ifndef MeshedSurfaceProxy_H
38 #define MeshedSurfaceProxy_H
40 #include "pointField.H"
41 #include "face.H"
42 #include "triFace.H"
44 #include "surfZoneList.H"
45 #include "surfaceFormatsCore.H"
46 #include "runTimeSelectionTables.H"
47 #include "memberFunctionSelectionTables.H"
48 #include "HashSet.H"
50 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
52 namespace Foam
55 // Forward declaration of friend functions and operators
57 template<class Face> class MeshedSurface;
59 /*---------------------------------------------------------------------------*\
60                      Class MeshedSurfaceProxy Declaration
61 \*---------------------------------------------------------------------------*/
63 template<class Face>
64 class MeshedSurfaceProxy
66     public fileFormats::surfaceFormatsCore
68     //- Private data
70         const pointField& points_;
72         const List<Face>& faces_;
74         const List<surfZone>& zones_;
76         const List<label>& faceMap_;
79 public:
81     // Static
83         //- Runtime type information
84         ClassName("MeshedSurfaceProxy");
86         //- The file format types that can be written via MeshedSurfaceProxy
87         static wordHashSet writeTypes();
89         //- Can this file format type be written via MeshedSurfaceProxy?
90         static bool canWriteType(const word& ext, const bool verbose=false);
93     // Constructors
95         //- Construct from component references
96         MeshedSurfaceProxy
97         (
98             const pointField&,
99             const List<Face>&,
100             const List<surfZone>& = List<surfZone>(),
101             const List<label>& faceMap = List<label>()
102         );
105     // Destructor
107         virtual ~MeshedSurfaceProxy();
110     // Member Function Selectors
112         declareMemberFunctionSelectionTable
113         (
114             void,
115             MeshedSurfaceProxy,
116             write,
117             fileExtension,
118             (
119                 const fileName& name,
120                 const MeshedSurfaceProxy<Face>& surf
121             ),
122             (name, surf)
123         );
125         //- Write to file
126         static void write(const fileName&, const MeshedSurfaceProxy<Face>&);
129     // Member Functions
131         // Access
133             //- Return const access to the points
134             inline const pointField& points() const
135             {
136                 return points_;
137             }
139             //- Return const access to the faces
140             inline const List<Face>& faces() const
141             {
142                 return faces_;
143             }
145             //- Const access to the surface zones.
146             //  If zones are defined, they must be contiguous and cover the
147             //  entire surface
148             inline const List<surfZone>& surfZones() const
149             {
150                 return zones_;
151             }
153             //- Const access to the faceMap, zero-sized when unused
154             inline const List<label>& faceMap() const
155             {
156                 return faceMap_;
157             }
159             //- Use faceMap?
160             inline bool useFaceMap() const
161             {
162                 return faceMap_.size() == faces_.size();
163             }
165         // Write
167             //- Generic write routine. Chooses writer based on extension.
168             virtual void write(const fileName& name) const
169             {
170                 write(name, *this);
171             }
173             //- Write to database
174             virtual void write(const Time&, const word& surfName = "") const;
178 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
180 } // End namespace Foam
182 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
184 #ifdef NoRepository
185 #   include "MeshedSurfaceProxy.C"
186 #endif
188 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
190 #endif
192 // ************************************************************************* //