]> git.mxchange.org Git - simgear.git/blob - simgear/scene/model/SGReaderWriterXML.hxx
Add preliminary spot light animation
[simgear.git] / simgear / scene / model / SGReaderWriterXML.hxx
1 /*
2  * Copyright (C) 2006-2007 Tim Moore timoore@redhat.com
3  * Copyright (C) 2008 Till Busch buti@bux.at
4  *
5  * This program is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU General Public License as
7  * published by the Free Software Foundation; either version 2 of the
8  * License, or (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
18  * MA 02110-1301, USA.
19  *
20  */
21 #ifndef SGREADERWRITERXML_HXX
22 #define SGREADERWRITERXML_HXX 1
23 #include <osgDB/Registry>
24 namespace simgear
25 {
26
27 class SGReaderWriterXML : public osgDB::ReaderWriter
28 {
29 public:
30     SGReaderWriterXML();
31     virtual ~SGReaderWriterXML();
32
33     virtual const char* className() const;
34
35     virtual ReadResult readNode(const std::string& fileName,
36                                 const osgDB::Options* options)
37     const;
38 };
39
40 }
41 #endif
42