Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/testing/src/libraries/util/UtilPrereqs.h @ 9533

Last change on this file since 9533 was 9533, checked in by landauf, 12 years ago

added more tests

  • Property svn:eol-style set to native
File size: 3.5 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
[8351]54#  define _UtilPrivate
55#elif defined (ORXONOX_GCC_VISIBILITY)
[792]56#  define _UtilExport  __attribute__ ((visibility("default")))
[8351]57#  define _UtilPrivate __attribute__ ((visibility("hidden")))
[792]58#else
59#  define _UtilExport
[8351]60#  define _UtilPrivate
[792]61#endif
62
[5929]63//-----------------------------------------------------------------------
64// Enums
65//-----------------------------------------------------------------------
[792]66
[5929]67namespace orxonox
68{
69    namespace ScopeID
70    {
71        //!A list of available scopes for the Scope template.
72        enum Value
73        {
74            Root,
75            Graphics
76        };
77    }
78}
79
[792]80//-----------------------------------------------------------------------
81// Forward declarations
82//-----------------------------------------------------------------------
[3280]83
84namespace orxonox
85{
[9530]86    class AdditionalContextListener;
[5929]87    class Clock;
[3280]88    class Exception;
89    class ExprParser;
90    class MultiType;
[6105]91    class OutputListener;
[8858]92    class OutputManager;
93    class OutputStream;
[5929]94    template <ScopeID::Value>
95    class Scope;
96    template <class, ScopeID::Value>
97    class ScopedSingleton;
98    class ScopeListener;
[9533]99    template <class T>
100    class SharedPtr;
[3280]101    class SignalHandler;
[5929]102    template <class T>
103    class Singleton;
[3280]104    class SubString;
105}
106
[3196]107namespace Ogre
108{
109    class Radian;
110    class Degree;
111    class Vector2;
112    class Vector3;
113    class Vector4;
114    class Matrix3;
115    class Matrix4;
116    class Quaternion;
117    class ColourValue;
118}
[1747]119namespace orxonox
120{
[3196]121    using Ogre::Radian;
122    using Ogre::Degree;
123    using Ogre::Vector2;
124    using Ogre::Vector3;
125    using Ogre::Vector4;
126    using Ogre::Matrix3;
127    using Ogre::Matrix4;
128    using Ogre::Quaternion;
129    using Ogre::ColourValue;
[3280]130}
[3196]131
[3280]132namespace Loki
133{
134    class ScopeGuardImplBase;
135    typedef const ScopeGuardImplBase& ScopeGuard;
[1747]136}
137
[6417]138// Just so you don't have to include StringUtils.h everywhere just for this
139namespace orxonox
140{
141    extern _UtilExport std::string BLANKSTRING;
142}
143
144
[792]145#endif /* _UtilPrereqs_H__ */
Note: See TracBrowser for help on using the repository browser.