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.h>
23 #include <OgreImageCodec.h>
24 #include <OGRE/OgreMovableObject.h>
25 #include <OGRE/OgreRenderable.h>
26 #include <OgrePlugin.h>
27 #include <OgreDataStream.h>
28 #include <OgreLogManager.h>
29 #include <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 #if OGRE_VERSION_MAJOR == 1 && OGRE_VERSION_MINOR >= 7
50 #include <RTShaderSystem/OgreRTShaderSystem.h>
51 #endif
52 
53 #endif