| 1 | /* | 
|---|
| 2 |  *   ORXONOX - the hottest 3D action shooter ever to exist | 
|---|
| 3 |  * | 
|---|
| 4 |  * | 
|---|
| 5 |  *   License notice: | 
|---|
| 6 |  * | 
|---|
| 7 |  *   This program is free software; you can redistribute it and/or | 
|---|
| 8 |  *   modify it under the terms of the GNU General Public License | 
|---|
| 9 |  *   as published by the Free Software Foundation; either version 2 | 
|---|
| 10 |  *   of the License, or (at your option) any later version. | 
|---|
| 11 |  * | 
|---|
| 12 |  *   This program is distributed in the hope that it will be useful, | 
|---|
| 13 |  *   but WITHOUT ANY WARRANTY; without even the implied warranty of | 
|---|
| 14 |  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
|---|
| 15 |  *   GNU General Public License for more details. | 
|---|
| 16 |  * | 
|---|
| 17 |  *   You should have received a copy of the GNU General Public License | 
|---|
| 18 |  *   along with this program; if not, write to the Free Software | 
|---|
| 19 |  *   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA. | 
|---|
| 20 |  * | 
|---|
| 21 |  *   Author: | 
|---|
| 22 |  *      Reto Grieder | 
|---|
| 23 |  *   Co-authors: | 
|---|
| 24 |  *      ... | 
|---|
| 25 |  * | 
|---|
| 26 |  */ | 
|---|
| 27 |  | 
|---|
| 28 | /** | 
|---|
| 29 |  @file  OrxonoxPrereq.h | 
|---|
| 30 |  @brief Contains all the necessary forward declarations for all classes, structs and enums. | 
|---|
| 31 |  */ | 
|---|
| 32 |  | 
|---|
| 33 | #ifndef _TinyXMLPrereqs_H__ | 
|---|
| 34 | #define _TinyXMLPrereqs_H__ | 
|---|
| 35 |  | 
|---|
| 36 | #include "orxonox/OrxonoxPlatform.h" | 
|---|
| 37 |  | 
|---|
| 38 | //----------------------------------------------------------------------- | 
|---|
| 39 | // Shared library settings | 
|---|
| 40 | //----------------------------------------------------------------------- | 
|---|
| 41 | #if (ORXONOX_PLATFORM == ORXONOX_PLATFORM_WIN32) && !defined( TINYXML_STATIC_BUILD ) | 
|---|
| 42 | #  ifdef TINYXML_SHARED_BUILD | 
|---|
| 43 | #    define _TinyXMLExport __declspec(dllexport) | 
|---|
| 44 | #  else | 
|---|
| 45 | #    if defined( __MINGW32__ ) | 
|---|
| 46 | #      define _TinyXMLExport | 
|---|
| 47 | #    else | 
|---|
| 48 | #      define _TinyXMLExport __declspec(dllimport) | 
|---|
| 49 | #    endif | 
|---|
| 50 | #  endif | 
|---|
| 51 | #elif defined ( ORXONOX_GCC_VISIBILITY ) | 
|---|
| 52 | #  define _TinyXMLExport  __attribute__ ((visibility("default"))) | 
|---|
| 53 | #else | 
|---|
| 54 | #  define _TinyXMLExport | 
|---|
| 55 | #endif | 
|---|
| 56 |  | 
|---|
| 57 |  | 
|---|
| 58 | //----------------------------------------------------------------------- | 
|---|
| 59 | // Forward declarations | 
|---|
| 60 | //----------------------------------------------------------------------- | 
|---|
| 61 |  | 
|---|
| 62 | class TiXmlString; | 
|---|
| 63 | class TiXmlOutStream; | 
|---|
| 64 | class TiXmlNode; | 
|---|
| 65 | class TiXmlHandle; | 
|---|
| 66 | class TiXmlDocument; | 
|---|
| 67 | class TiXmlElement; | 
|---|
| 68 | class TiXmlComment; | 
|---|
| 69 | class TiXmlUnknown; | 
|---|
| 70 | class TiXmlAttribute; | 
|---|
| 71 | class TiXmlText; | 
|---|
| 72 | class TiXmlDeclaration; | 
|---|
| 73 | class TiXmlParsingData; | 
|---|
| 74 |  | 
|---|
| 75 | namespace ticpp | 
|---|
| 76 | { | 
|---|
| 77 |     class Document; | 
|---|
| 78 |     class Element; | 
|---|
| 79 |     class Declaration; | 
|---|
| 80 |     class StylesheetReference; | 
|---|
| 81 |     class Text; | 
|---|
| 82 |     class Comment; | 
|---|
| 83 |     class Attribute; | 
|---|
| 84 | } | 
|---|
| 85 |  | 
|---|
| 86 | #endif /* _TinyXMLPrereqs_H__ */ | 
|---|