Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/forks/sandbox_light/src/libraries/util/UtilPrereqs.h @ 7908

Last change on this file since 7908 was 7908, checked in by rgrieder, 13 years ago

Stripped down trunk to form a new light sandbox.

  • Property svn:eol-style set to native
File size: 3.0 KB
Line 
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 *      Reto Grieder
24 *   Co-authors:
25 *      Fabian 'x3n' Landau
26 *
27 */
28
29/**
30@file
31@brief
32    Shared library macros, enums, constants and forward declarations for the util library
33*/
34
35#ifndef _UtilPrereqs_H__
36#define _UtilPrereqs_H__
37
38#include "OrxonoxConfig.h"
39
40//-----------------------------------------------------------------------
41// Shared library settings
42//-----------------------------------------------------------------------
43
44#if defined(ORXONOX_PLATFORM_WINDOWS) && !defined( UTIL_STATIC_BUILD )
45#  ifdef UTIL_SHARED_BUILD
46#    define _UtilExport __declspec(dllexport)
47#  else
48#    if defined( __MINGW32__ )
49#      define _UtilExport
50#    else
51#      define _UtilExport __declspec(dllimport)
52#    endif
53#  endif
54#elif defined ( ORXONOX_GCC_VISIBILITY )
55#  define _UtilExport  __attribute__ ((visibility("default")))
56#else
57#  define _UtilExport
58#endif
59
60//-----------------------------------------------------------------------
61// Enums
62//-----------------------------------------------------------------------
63
64namespace orxonox
65{
66}
67
68//-----------------------------------------------------------------------
69// Forward declarations
70//-----------------------------------------------------------------------
71
72namespace orxonox
73{
74    class Clock;
75    class Exception;
76    class IntVector2;
77    class IntVector3;
78    class MultiType;
79    class OutputHandler;
80    class OutputListener;
81    class SignalHandler;
82    template <class T>
83    class Singleton;
84    class SubString;
85}
86
87namespace Ogre
88{
89    class Radian;
90    class Degree;
91    class Vector2;
92    class Vector3;
93    class Vector4;
94    class Matrix3;
95    class Matrix4;
96    class Quaternion;
97    class ColourValue;
98}
99namespace orxonox
100{
101    using Ogre::Radian;
102    using Ogre::Degree;
103    using Ogre::Vector2;
104    using Ogre::Vector3;
105    using Ogre::Vector4;
106    using Ogre::Matrix3;
107    using Ogre::Matrix4;
108    using Ogre::Quaternion;
109    using Ogre::ColourValue;
110}
111
112namespace Loki
113{
114    class ScopeGuardImplBase;
115    typedef const ScopeGuardImplBase& ScopeGuard;
116}
117
118// Just so you don't have to include StringUtils.h everywhere just for this
119namespace orxonox
120{
121    extern _UtilExport std::string BLANKSTRING;
122}
123
124
125#endif /* _UtilPrereqs_H__ */
Note: See TracBrowser for help on using the repository browser.