All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
ogre_gazebo.h
Go to the documentation of this file.
1 /*
2  * Copyright 2011 Nate Koenig
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  *
16 */
17 #ifndef GAZEBO_OGRE_H_
18 #define GAZEBO_OGRE_H_
19 
20 // This disables warning messages for OGRE
21 #pragma GCC system_header
22 #include <OGRE/Ogre.h>
23 #include <OGRE/OgreImageCodec.h>
24 #include <OGRE/OgreMovableObject.h>
25 #include <OGRE/OgreRenderable.h>
26 #include <OGRE/OgrePlugin.h>
27 #include <OGRE/OgreDataStream.h>
28 #include <OGRE/OgreLogManager.h>
29 #include <OGRE/OgreWindowEventUtilities.h>
30 #include <OGRE/OgreSceneQuery.h>
31 #include <OGRE/OgreRoot.h>
32 #include <OGRE/OgreSceneManager.h>
33 #include <OGRE/OgreSceneNode.h>
34 #include <OGRE/OgreVector3.h>
35 #include <OGRE/OgreManualObject.h>
36 #include <OGRE/OgreMaterialManager.h>
37 #include <OGRE/OgreColourValue.h>
38 #include <OGRE/OgreQuaternion.h>
39 #include <OGRE/OgreMesh.h>
40 #include <OGRE/OgreFontManager.h>
41 #include <OGRE/OgreHardwareBufferManager.h>
42 #include <OGRE/OgreCamera.h>
43 #include <OGRE/OgreNode.h>
44 #include <OGRE/OgreSimpleRenderable.h>
45 #include <OGRE/OgreFrameListener.h>
46 #include <OGRE/OgreTexture.h>
47 #include <OGRE/OgreRenderObjectListener.h>
48 
49 #include <OGRE/Terrain/OgreTerrainMaterialGeneratorA.h>
50 #include <OGRE/Terrain/OgreTerrain.h>
51 #include <OGRE/Terrain/OgreTerrainGroup.h>
52 #include <OGRE/OgreTechnique.h>
53 #include <OGRE/OgrePass.h>
54 #include <OGRE/OgreTextureUnitState.h>
55 #include <OGRE/OgreGpuProgramManager.h>
56 #include <OGRE/OgreHighLevelGpuProgramManager.h>
57 #include <OGRE/OgreHardwarePixelBuffer.h>
58 #include <OGRE/OgreShadowCameraSetupPSSM.h>
59 
60 #if OGRE_VERSION_MAJOR == 1 && OGRE_VERSION_MINOR >= 7
61 #include <OGRE/RTShaderSystem/OgreRTShaderSystem.h>
62 #endif
63 
64 #endif