Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/trunk/src/util/XMLIncludes.h @ 1056

Last change on this file since 1056 was 1056, checked in by landauf, 17 years ago

don't panic, no codechanges!
added a link to www.orxonox.net

File size: 1.9 KB
RevLine 
[1056]1/*
2 *   ORXONOX - the hottest 3D action shooter ever to exist
3 *                    > www.orxonox.net <
4 *
5 *
6 *   License notice:
7 *
8 *   This program is free software; you can redistribute it and/or
9 *   modify it under the terms of the GNU General Public License
10 *   as published by the Free Software Foundation; either version 2
11 *   of the License, or (at your option) any later version.
12 *
13 *   This program is distributed in the hope that it will be useful,
14 *   but WITHOUT ANY WARRANTY; without even the implied warranty of
15 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 *   GNU General Public License for more details.
17 *
18 *   You should have received a copy of the GNU General Public License
19 *   along with this program; if not, write to the Free Software
20 *   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
21 *
22 *   Author:
23 *      ...
24 *   Co-authors:
25 *      ...
26 *
27 */
28
[890]29//-----------------------------------------------------------------------
30// Forward declarations
31//-----------------------------------------------------------------------
[826]32
[890]33class TiXmlString;
34class TiXmlOutStream;
35class TiXmlNode;
36class TiXmlHandle;
37class TiXmlDocument;
38class TiXmlElement;
39class TiXmlComment;
40class TiXmlUnknown;
41class TiXmlAttribute;
42class TiXmlText;
43class TiXmlDeclaration;
44class TiXmlParsingData;
45
46namespace ticpp
47{
48    class Document;
49    class Element;
50    class Declaration;
51    class StylesheetReference;
52    class Text;
53    class Comment;
54    class Attribute;
55}
56
[826]57namespace orxonox
58{
59    typedef ticpp::Document Document;
60    typedef ticpp::Element Element;
61    typedef ticpp::Declaration Declaration;
62    typedef ticpp::StylesheetReference StylesheetReference;
63    typedef ticpp::Text Text;
64    typedef ticpp::Comment Comment;
65    typedef ticpp::Attribute Attribute;
66}
Note: See TracBrowser for help on using the repository browser.