Ignition Rendering

API Reference

5.1.0
Ogre2Storage.hh
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2018 Open Source Robotics Foundation
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 IGNITION_RENDERING_OGRE2_OGRE2STORAGE_HH_
18 #define IGNITION_RENDERING_OGRE2_OGRE2STORAGE_HH_
19 
20 #include <memory>
21 
23 
30 
31 namespace ignition
32 {
33  namespace rendering
34  {
35  inline namespace IGNITION_RENDERING_VERSION_NAMESPACE {
36 
37 // armhf failed to build with this code. It can not be removed for the rest
38 // of arches to keep ABI but should be removed in major versions unreleased
39 // see https://github.com/ignitionrobotics/ign-rendering/pull/457
40 #ifndef __ARM_PCS_VFP
41  template class BaseGeometryStore<Ogre2Geometry>;
42  template class BaseLightStore<Ogre2Light>;
43  template class BaseNodeStore<Ogre2Node>;
44  template class BaseSceneStore<Ogre2Scene>;
45  template class BaseSensorStore<Ogre2Sensor>;
46  template class BaseSubMeshStore<Ogre2SubMesh>;
47  template class BaseVisualStore<Ogre2Visual>;
48 #endif
49 
50  typedef BaseGeometryStore<Ogre2Geometry> Ogre2GeometryStore;
51  typedef BaseLightStore<Ogre2Light> Ogre2LightStore;
52  typedef BaseNodeStore<Ogre2Node> Ogre2NodeStore;
53  typedef BaseSceneStore<Ogre2Scene> Ogre2SceneStore;
54  typedef BaseSensorStore<Ogre2Sensor> Ogre2SensorStore;
55  typedef BaseSubMeshStore<Ogre2SubMesh> Ogre2SubMeshStore;
56  typedef BaseVisualStore<Ogre2Visual> Ogre2VisualStore;
57 
65  }
66  }
67 }
68 #endif
BaseLightStore< Ogre2Light > Ogre2LightStore
Definition: Ogre2RenderTypes.hh:67
BaseSensorStore< Ogre2Sensor > Ogre2SensorStore
Definition: Ogre2RenderTypes.hh:70
BaseVisualStore< Ogre2Visual > Ogre2VisualStore
Definition: Ogre2RenderTypes.hh:72
BaseNodeStore< Ogre2Node > Ogre2NodeStore
Definition: Ogre2RenderTypes.hh:68
shared_ptr< Ogre2SubMeshStore > Ogre2SubMeshStorePtr
Definition: Ogre2RenderTypes.hh:116
shared_ptr< Ogre2GeometryStore > Ogre2GeometryStorePtr
Definition: Ogre2RenderTypes.hh:110
BaseSceneStore< Ogre2Scene > Ogre2SceneStore
Definition: Ogre2RenderTypes.hh:69
shared_ptr< Ogre2LightStore > Ogre2LightStorePtr
Definition: Ogre2RenderTypes.hh:111
shared_ptr< Ogre2SensorStore > Ogre2SensorStorePtr
Definition: Ogre2RenderTypes.hh:115
shared_ptr< Ogre2VisualStore > Ogre2VisualStorePtr
Definition: Ogre2RenderTypes.hh:117
BaseSubMeshStore< Ogre2SubMesh > Ogre2SubMeshStore
Definition: Ogre2RenderTypes.hh:71
shared_ptr< Ogre2NodeStore > Ogre2NodeStorePtr
Definition: Ogre2RenderTypes.hh:112
shared_ptr< Ogre2SceneStore > Ogre2SceneStorePtr
Definition: Ogre2RenderTypes.hh:114
BaseGeometryStore< Ogre2Geometry > Ogre2GeometryStore
Definition: Ogre2RenderTypes.hh:64