Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/FICN/src/orxonox/OrxonoxPrereqs.h @ 729

Last change on this file since 729 was 729, checked in by rgrieder, 16 years ago
  • fixed multiple template instantiation problem under windows
  • removed some warnings by introducing explicit casts
File size: 3.5 KB
Line 
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 and structs.
31 */
32
33#ifndef _OrxonoxPrereqs_H__
34#define _OrxonoxPrereqs_H__
35
36#include "OrxonoxPlatform.h"
37
38//-----------------------------------------------------------------------
39// Shared library settings
40//-----------------------------------------------------------------------
41#if (ORXONOX_PLATFORM == ORXONOX_PLATFORM_WIN32) && !defined( ORXONOX_STATIC_BUILD )
42#  ifdef ORXONOX_SHARED_BUILD
43#    define _OrxonoxExport __declspec(dllexport)
44#  else
45#    if defined( __MINGW32__ )
46#      define _OrxonoxExport
47#    else
48#      define _OrxonoxExport __declspec(dllimport)
49#    endif
50#  endif
51#elif defined ( ORXONOX_GCC_VISIBILITY )
52#  define _OrxonoxExport  __attribute__ ((visibility("default")))
53#else
54#  define _OrxonoxExport
55#endif
56
57//-----------------------------------------------------------------------
58// Forward declarations
59//-----------------------------------------------------------------------
60
61// classes that have not yet been put into a namespace
62class InputManager;
63class SpaceShipSteering;
64
65// TinyXML
66class TiXmlString;
67class TiXmlOutStream;
68class TiXmlNode;
69class TiXmlHandle;
70class TiXmlDocument;
71class TiXmlElement;
72class TiXmlComment;
73class TiXmlUnknown;
74class TiXmlAttribute;
75class TiXmlText;
76class TiXmlDeclaration;
77class TiXmlParsingData;
78
79namespace orxonox {
80  class Ambient;
81  class BaseObject;
82  class Camera;
83  class GraphicsEngine;
84  class Mesh;
85  class Model;
86  class NPC;
87  class OrxListener;
88  class Orxonox;
89  class Skybox;
90  class SpaceShip;
91  class Tickable;
92  class TickFrameListener;
93  template <class T>
94  class Timer;
95  class TimerBase;
96  class TimerFrameListener;
97  class WorldEntity;
98
99  class AmmunitionDump;
100  class Bullet;
101  class BulletManager;
102  class BaseWeapon;
103  class BarrelGun;
104  class WeaponStation;
105
106  class ParticleInterface;
107  class HUD;
108}
109
110namespace audio {
111  class AudioBuffer;
112  class AudioManager;
113  class AudioSource;
114  class AudioStream;
115}
116
117namespace network {
118  class Client;
119  class ClientConnection;
120  class ClientFrameListener;
121  class ClientInformation;
122  class ConnectionManager;
123  class GameStateClient;
124  class GameStateManager;
125  class PacketBuffer;
126  class PacketDecoder;
127  class PacketGenerator;
128  class Server;
129  class ServerFrameListener;
130  class Synchronisable;
131  struct ack;
132  struct chat;
133  struct classid;
134  struct ClientList;
135  struct GameState;
136  struct GameStateCompressed;
137  struct keyboard;
138  struct mouse;
139  struct PacketEnvelope;
140  struct QueueItem;
141  struct synchData;
142  struct synchronisableVariable;
143
144}
145
146#endif /* _OrxonoxPrereqs_H__ */
Note: See TracBrowser for help on using the repository browser.