fixed: auto_ptr -> unique_ptr
[opensg.git] / Source / System / FileIO / OSB / OSGNFIOSceneFileType.h
blob45d7d0c3b2899a015f551960af8012ed3169696a
1 /*---------------------------------------------------------------------------*\
2 * OpenSG *
3 * *
4 * *
5 * Copyright (C) 2000-2002 by the OpenSG Forum *
6 * *
7 * www.opensg.org *
8 * *
9 * contact: dirk@opensg.org, gerrit.voss@vossg.org, jbehr@zgdv.de *
10 * *
11 \*---------------------------------------------------------------------------*/
12 /*---------------------------------------------------------------------------*\
13 * License *
14 * *
15 * This library is free software; you can redistribute it and/or modify it *
16 * under the terms of the GNU Library General Public License as published *
17 * by the Free Software Foundation, version 2. *
18 * *
19 * This library is distributed in the hope that it will be useful, but *
20 * WITHOUT ANY WARRANTY; without even the implied warranty of *
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU *
22 * Library General Public License for more details. *
23 * *
24 * You should have received a copy of the GNU Library General Public *
25 * License along with this library; if not, write to the Free Software *
26 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. *
27 * *
28 \*---------------------------------------------------------------------------*/
29 /*---------------------------------------------------------------------------*\
30 * Changes *
31 * *
32 * *
33 * *
34 * *
35 * *
36 * *
37 \*---------------------------------------------------------------------------*/
39 #ifndef _OSGNFIOSCENEFILETYPE_H_
40 #define _OSGNFIOSCENEFILETYPE_H_
41 #ifdef __sgi
42 #pragma once
43 #endif
45 #include "OSGFileIODef.h"
46 #include "OSGSceneFileType.h"
48 OSG_BEGIN_NAMESPACE
50 /*! \brief NFIOSceneFileType
51 \ingroup GrpFileIOOSB
52 \ingroup GrpLibOSGFileIO
55 class OSG_FILEIO_DLLMAPPING NFIOSceneFileType : public SceneFileType
57 /*========================== PUBLIC =================================*/
58 public:
60 /*---------------------------------------------------------------------*/
61 /*! \name Static Get */
62 /*! \{ */
64 static NFIOSceneFileType &the(void);
66 /*! \} */
67 /*---------------------------------------------------------------------*/
68 /*! \name Destructors */
69 /*! \{ */
71 virtual ~NFIOSceneFileType(void);
73 /*! \} */
74 /*---------------------------------------------------------------------*/
75 /*! \name Get */
76 /*! \{ */
78 virtual const Char8 *getName(void) const;
80 /*! \} */
81 /*---------------------------------------------------------------------*/
82 /*! \name Read */
83 /*! \{ */
85 virtual NodeTransitPtr read( std::istream &is,
86 const Char8 *fileNameOrExtension,
87 Resolver resolver = NULL ) const;
89 /*! \} */
90 /*---------------------------------------------------------------------*/
91 /*! \name Write */
92 /*! \{ */
94 virtual bool write(Node * const node,
95 std::ostream &os,
96 Char8 const *fileNameOrExtension) const;
98 /*! \} */
99 /*========================= PROTECTED ===============================*/
101 protected:
103 /*---------------------------------------------------------------------*/
104 /*! \name Member */
105 /*! \{ */
107 static const Char8 *_suffixA[];
108 static NFIOSceneFileType _the;
110 /*! \} */
111 /*---------------------------------------------------------------------*/
112 /*! \name Constructors */
113 /*! \{ */
115 NFIOSceneFileType(const Char8 *suffixArray[],
116 UInt16 suffixByteCount,
117 bool override,
118 UInt32 overridePriority,
119 UInt32 flags);
121 NFIOSceneFileType(const NFIOSceneFileType &obj);
123 /*! \} */
124 /*========================== PRIVATE ================================*/
125 private:
127 typedef SceneFileType Inherited;
129 /*!\brief prohibit default function (move to 'public' if needed) */
130 void operator =(const NFIOSceneFileType &source);
133 typedef NFIOSceneFileType* NFIOSceneFileTypeP;
135 OSG_END_NAMESPACE
137 #endif // _OSGNFIOSCENEFILETYPE_H_