Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: downloads/ogreode/loader/include/OgreOde_LoaderPreReqs.h @ 21

Last change on this file since 21 was 21, checked in by nicolasc, 16 years ago

added ogreode and Colladaplugin

File size: 637 bytes
Line 
1#ifndef _OGREODELOADERPREREQS_H_
2#define _OGREODELOADERPREREQS_H_
3
4
5#include "Ogre.h"
6#include "OgreNoMemoryMacros.h"
7#include "ode/ode.h"
8#include "OgreMemoryMacros.h"
9#include "OgreOde_Core.h"
10#include "OgreOde_Prefab.h"
11
12namespace OgreOde_Loader
13{
14#if OGRE_PLATFORM == OGRE_PLATFORM_WIN32
15#   if defined( OGREODEEXPORT_LOADER )
16#       define _OgreOdeExport_Loader __declspec( dllexport )
17#   else
18#       define _OgreOdeExport_Loader __declspec( dllimport )
19#   endif
20#else
21#   define _OgreOdeExport_Loader
22#endif
23
24    typedef std::list<OgreOde_Prefab::Object  *>   ObjectList;
25        class DotLoader;
26}
27
28#endif //_OGREODELOADERPREREQS_H_
Note: See TracBrowser for help on using the repository browser.