Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/input/src/util/XMLIncludes.h @ 893

Last change on this file since 893 was 893, checked in by rgrieder, 16 years ago
  • merged trunk into input
File size: 933 bytes
Line 
1//-----------------------------------------------------------------------
2// Forward declarations
3//-----------------------------------------------------------------------
4
5class TiXmlString;
6class TiXmlOutStream;
7class TiXmlNode;
8class TiXmlHandle;
9class TiXmlDocument;
10class TiXmlElement;
11class TiXmlComment;
12class TiXmlUnknown;
13class TiXmlAttribute;
14class TiXmlText;
15class TiXmlDeclaration;
16class TiXmlParsingData;
17
18namespace ticpp
19{
20    class Document;
21    class Element;
22    class Declaration;
23    class StylesheetReference;
24    class Text;
25    class Comment;
26    class Attribute;
27}
28
29namespace orxonox
30{
31    typedef ticpp::Document Document;
32    typedef ticpp::Element Element;
33    typedef ticpp::Declaration Declaration;
34    typedef ticpp::StylesheetReference StylesheetReference;
35    typedef ticpp::Text Text;
36    typedef ticpp::Comment Comment;
37    typedef ticpp::Attribute Attribute;
38}
Note: See TracBrowser for help on using the repository browser.