Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

Last change on this file since 8266 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
RevLine 
[792]1/*
2 *   ORXONOX - the hottest 3D action shooter ever to exist
[1505]3 *                    > www.orxonox.net <
[792]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/**
[5929]30@file
31@brief
32    Shared library macros, enums, constants and forward declarations for the util library
[1024]33*/
[1505]34
[792]35#ifndef _UtilPrereqs_H__
36#define _UtilPrereqs_H__
37
[2710]38#include "OrxonoxConfig.h"
[792]39
40//-----------------------------------------------------------------------
41// Shared library settings
42//-----------------------------------------------------------------------
[5929]43
[2710]44#if defined(ORXONOX_PLATFORM_WINDOWS) && !defined( UTIL_STATIC_BUILD )
[792]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
[5929]60//-----------------------------------------------------------------------
61// Enums
62//-----------------------------------------------------------------------
[792]63
[5929]64namespace orxonox
65{
66}
67
[792]68//-----------------------------------------------------------------------
69// Forward declarations
70//-----------------------------------------------------------------------
[3280]71
72namespace orxonox
73{
[5929]74    class Clock;
[3280]75    class Exception;
76    class IntVector2;
77    class IntVector3;
78    class MultiType;
79    class OutputHandler;
[6105]80    class OutputListener;
[3280]81    class SignalHandler;
[5929]82    template <class T>
83    class Singleton;
[3280]84    class SubString;
85}
86
[3196]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}
[1747]99namespace orxonox
100{
[3196]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;
[3280]110}
[3196]111
[3280]112namespace Loki
113{
114    class ScopeGuardImplBase;
115    typedef const ScopeGuardImplBase& ScopeGuard;
[1747]116}
117
[6417]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
[792]125#endif /* _UtilPrereqs_H__ */
Note: See TracBrowser for help on using the repository browser.