[612] | 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: |
---|
[682] | 22 | * Reto Grieder |
---|
[612] | 23 | * Co-authors: |
---|
| 24 | * ... |
---|
| 25 | * |
---|
| 26 | */ |
---|
| 27 | |
---|
| 28 | /** |
---|
[777] | 29 | @file OrxonoxPrereqs.h |
---|
[682] | 30 | @brief Contains all the necessary forward declarations for all classes and structs. |
---|
[612] | 31 | */ |
---|
| 32 | |
---|
[673] | 33 | #ifndef _OrxonoxPrereqs_H__ |
---|
| 34 | #define _OrxonoxPrereqs_H__ |
---|
[612] | 35 | |
---|
[682] | 36 | #include "OrxonoxPlatform.h" |
---|
[612] | 37 | |
---|
[729] | 38 | //----------------------------------------------------------------------- |
---|
| 39 | // Shared library settings |
---|
| 40 | //----------------------------------------------------------------------- |
---|
[788] | 41 | #if (ORXONOX_PLATFORM == ORXONOX_PLATFORM_WIN32) && !(defined(ORXONOX_STATIC_BUILD) || defined(ORXONOX_NO_EXPORTS)) |
---|
[729] | 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 | |
---|
[612] | 61 | // classes that have not yet been put into a namespace |
---|
| 62 | class InputManager; |
---|
| 63 | class SpaceShipSteering; |
---|
| 64 | |
---|
| 65 | namespace orxonox { |
---|
| 66 | class Ambient; |
---|
| 67 | class BaseObject; |
---|
| 68 | class Camera; |
---|
| 69 | class GraphicsEngine; |
---|
[922] | 70 | struct InputEvent; |
---|
| 71 | class InputEventListener; |
---|
[919] | 72 | class InputHandler; |
---|
[612] | 73 | class Mesh; |
---|
| 74 | class Model; |
---|
| 75 | class NPC; |
---|
| 76 | class OrxListener; |
---|
| 77 | class Orxonox; |
---|
| 78 | class Skybox; |
---|
| 79 | class SpaceShip; |
---|
| 80 | class Tickable; |
---|
| 81 | class TickFrameListener; |
---|
| 82 | template <class T> |
---|
| 83 | class Timer; |
---|
| 84 | class TimerBase; |
---|
| 85 | class TimerFrameListener; |
---|
| 86 | class WorldEntity; |
---|
| 87 | |
---|
[637] | 88 | class AmmunitionDump; |
---|
| 89 | class Bullet; |
---|
| 90 | class BulletManager; |
---|
| 91 | class BaseWeapon; |
---|
| 92 | class BarrelGun; |
---|
| 93 | class WeaponStation; |
---|
[708] | 94 | |
---|
| 95 | class ParticleInterface; |
---|
| 96 | class HUD; |
---|
[612] | 97 | } |
---|
| 98 | |
---|
| 99 | |
---|
[673] | 100 | #endif /* _OrxonoxPrereqs_H__ */ |
---|