source: GTP/trunk/App/Demos/Geom/include/OgreStableHeaders.h @ 1030

Revision 1030, 2.6 KB checked in by gumbau, 18 years ago (diff)

Ogre Stuff initial import

Line 
1/*
2-----------------------------------------------------------------------------
3This source file is part of OGRE
4    (Object-oriented Graphics Rendering Engine)
5For the latest info, see http://www.ogre3d.org/
6
7Copyright (c) 2000-2005 The OGRE Team
8Also see acknowledgements in Readme.html
9
10This program is free software; you can redistribute it and/or modify it under
11the terms of the GNU Lesser General Public License as published by the Free Software
12Foundation; either version 2 of the License, or (at your option) any later
13version.
14
15This program is distributed in the hope that it will be useful, but WITHOUT
16ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
17FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
18
19You should have received a copy of the GNU Lesser General Public License along with
20this program; if not, write to the Free Software Foundation, Inc., 59 Temple
21Place - Suite 330, Boston, MA 02111-1307, USA, or go to
22http://www.gnu.org/copyleft/lesser.txt.
23-----------------------------------------------------------------------------
24*/
25
26/* Stable headers which will be used for precompilation if the compiler
27   supports it. Add entries here when headers are unlikely to change.
28   NB: a change to any of these headers will result in a full rebuild,
29   so don't add things to this lightly.
30*/
31
32#ifndef __OgreStableHeaders__
33#define __OgreStableHeaders__
34
35#include "OgrePlatform.h"
36
37#if OGRE_PLATFORM == OGRE_PLATFORM_WIN32 || OGRE_PLATFORM == OGRE_PLATFORM_APPLE
38#include "OgreArchive.h"
39#include "OgreAxisAlignedBox.h"
40#include "OgreBitwise.h"
41#include "OgreCamera.h"
42#include "OgreColourValue.h"
43#include "OgreCommon.h"
44#include "OgreDataStream.h"
45#include "OgreException.h"
46#include "OgreFileSystem.h"
47#include "OgreLog.h"
48#include "OgreMath.h"
49#include "OgreMatrix3.h"
50#include "OgreMatrix4.h"
51#include "OgreMovableObject.h"
52#include "OgreNode.h"
53#include "OgrePlane.h"
54#include "OgrePrerequisites.h"
55#include "OgreQuaternion.h"
56#include "OgreResource.h"
57#include "OgreSerializer.h"
58#include "OgreSharedPtr.h"
59#include "OgreSimpleRenderable.h"
60#include "OgreSimpleSpline.h"
61#include "OgreSingleton.h"
62#include "OgreSphere.h"
63#include "OgreStdHeaders.h"
64#include "OgreString.h"
65#include "OgreStringConverter.h"
66#include "OgreStringInterface.h"
67#include "OgreStringVector.h"
68#include "OgreUserDefinedObject.h"
69#include "OgreVector2.h"
70#include "OgreVector3.h"
71#include "OgreVector4.h"
72#include "OgreWireBoundingBox.h"
73#include "OgreZip.h"
74#endif
75
76#endif
Note: See TracBrowser for help on using the repository browser.