Better bounding on topo change
[foam-extend-3.2.git] / src / surfMesh / surfaceFormats / off / OFFsurfaceFormat.H
blob1187912f5129928d3a5e1f3204cfd2059c370da8
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::fileFormats::OFFsurfaceFormat
27 Description
28     Provide a means of reading/writing Geomview OFF polyList format.
31 See Also
32     The <a href="http://www.geoview.org">Geoview</a>
33     file format information:
34     http://www.geomview.org/docs/html/OFF.html#OFF
36 Note
37     When reading, the optional @a colorspec is ignored.
38     When writing, it is set to the zone number (integer).
40 SourceFiles
41     OFFsurfaceFormat.C
43 \*---------------------------------------------------------------------------*/
45 #ifndef OFFsurfaceFormat_H
46 #define OFFsurfaceFormat_H
48 #include "MeshedSurface.H"
49 #include "MeshedSurfaceProxy.H"
50 #include "UnsortedMeshedSurface.H"
52 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
54 namespace Foam
56 namespace fileFormats
59 /*---------------------------------------------------------------------------*\
60                       Class OFFsurfaceFormat Declaration
61 \*---------------------------------------------------------------------------*/
63 template<class Face>
64 class OFFsurfaceFormat
66     public MeshedSurface<Face>
68     // Private Member Functions
70         //- Disallow default bitwise copy construct
71         OFFsurfaceFormat(const OFFsurfaceFormat&);
73         //- Disallow default bitwise assignment
74         void operator=(const OFFsurfaceFormat&);
77 public:
79     // Constructors
81         //- Construct from file name
82         OFFsurfaceFormat(const fileName&);
85     // Selectors
87         //- Read file and return surface
88         static autoPtr<MeshedSurface<Face> > New(const fileName& name)
89         {
90             return autoPtr<MeshedSurface<Face> >
91             (
92                 new OFFsurfaceFormat(name)
93             );
94         }
97     //- Destructor
98     virtual ~OFFsurfaceFormat()
99     {}
102     // Member Functions
104         //- Write surface mesh components by proxy
105         static void write(const fileName&, const MeshedSurfaceProxy<Face>&);
107         //- Read from file
108         virtual bool read(const fileName&);
110         //- Write object
111         virtual void write(const fileName& name) const
112         {
113             write(name, MeshedSurfaceProxy<Face>(*this));
114         }
118 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
120 } // End namespace fileFormats
121 } // End namespace Foam
123 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
126 #ifdef NoRepository
127 #   include "OFFsurfaceFormat.C"
128 #endif
130 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
132 #endif
134 // ************************************************************************* //