Better bounding on topo change
[foam-extend-3.2.git] / src / surfMesh / surfaceFormats / obj / OBJsurfaceFormat.H
blobe3de127042a62403708f6b4d576b72149d6c08a6
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::OBJsurfaceFormat
27 Description
28     Provide a means of reading/writing Alias/Wavefront OBJ format.
30     Does not handle negative face indices.
32 SourceFiles
33     OBJsurfaceFormat.C
35 \*---------------------------------------------------------------------------*/
37 #ifndef OBJsurfaceFormat_H
38 #define OBJsurfaceFormat_H
40 #include "MeshedSurface.H"
41 #include "MeshedSurfaceProxy.H"
42 #include "UnsortedMeshedSurface.H"
44 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
46 namespace Foam
48 namespace fileFormats
51 /*---------------------------------------------------------------------------*\
52                       Class OBJsurfaceFormat Declaration
53 \*---------------------------------------------------------------------------*/
55 template<class Face>
56 class OBJsurfaceFormat
58     public MeshedSurface<Face>
60     // Private Member Functions
62         //- Disallow default bitwise copy construct
63         OBJsurfaceFormat(const OBJsurfaceFormat<Face>&);
65         //- Disallow default bitwise assignment
66         void operator=(const OBJsurfaceFormat<Face>&);
69 public:
71     // Constructors
73         //- Construct from file name
74         OBJsurfaceFormat(const fileName&);
77     // Selectors
79         //- Read file and return surface
80         static autoPtr<MeshedSurface<Face> > New(const fileName& name)
81         {
82             return autoPtr<MeshedSurface<Face> >
83             (
84                 new OBJsurfaceFormat<Face>(name)
85             );
86         }
89     // Destructor
91         virtual ~OBJsurfaceFormat()
92         {}
95     // Member Functions
97         //- Write surface mesh components by proxy
98         static void write(const fileName&, const MeshedSurfaceProxy<Face>&);
100         //- Read from file
101         virtual bool read(const fileName&);
103         //- Write object file
104         virtual void write(const fileName& name) const
105         {
106             write(name, MeshedSurfaceProxy<Face>(*this));
107         }
111 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
113 } // End namespace fileFormats
114 } // End namespace Foam
116 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
118 #ifdef NoRepository
119 #   include "OBJsurfaceFormat.C"
120 #endif
122 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
124 #endif
126 // ************************************************************************* //