Ignition Rendering

API Reference

6.0.1
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 
31 
32 namespace ignition
33 {
34  namespace rendering
35  {
36  inline namespace IGNITION_RENDERING_VERSION_NAMESPACE {
37 
38 // armhf failed to build with this code. It can not be removed for the rest
39 // of arches to keep ABI but should be removed in major versions unreleased
40 // see https://github.com/ignitionrobotics/ign-rendering/pull/457
41 #ifndef __ARM_PCS_VFP
42  template class BaseGeometryStore<Ogre2Geometry>;
43  template class BaseLightStore<Ogre2Light>;
44  template class BaseNodeStore<Ogre2Node>;
45  template class BaseSceneStore<Ogre2Scene>;
46  template class BaseSensorStore<Ogre2Sensor>;
47  template class BaseSubMeshStore<Ogre2SubMesh>;
48  template class BaseVisualStore<Ogre2Visual>;
49 #endif
50 
51  typedef BaseGeometryStore<Ogre2Geometry> Ogre2GeometryStore;
52  typedef BaseLightStore<Ogre2Light> Ogre2LightStore;
53  typedef BaseNodeStore<Ogre2Node> Ogre2NodeStore;
54  typedef BaseSceneStore<Ogre2Scene> Ogre2SceneStore;
55  typedef BaseSensorStore<Ogre2Sensor> Ogre2SensorStore;
56  typedef BaseSubMeshStore<Ogre2SubMesh> Ogre2SubMeshStore;
57  typedef BaseVisualStore<Ogre2Visual> Ogre2VisualStore;
58 
66  }
67  }
68 }
69 #endif
BaseLightStore< Ogre2Light > Ogre2LightStore
Definition: Ogre2RenderTypes.hh:72
BaseSensorStore< Ogre2Sensor > Ogre2SensorStore
Definition: Ogre2RenderTypes.hh:75
BaseVisualStore< Ogre2Visual > Ogre2VisualStore
Definition: Ogre2RenderTypes.hh:77
BaseNodeStore< Ogre2Node > Ogre2NodeStore
Definition: Ogre2RenderTypes.hh:73
shared_ptr< Ogre2SubMeshStore > Ogre2SubMeshStorePtr
Definition: Ogre2RenderTypes.hh:127
shared_ptr< Ogre2GeometryStore > Ogre2GeometryStorePtr
Definition: Ogre2RenderTypes.hh:121
BaseSceneStore< Ogre2Scene > Ogre2SceneStore
Definition: Ogre2RenderTypes.hh:74
shared_ptr< Ogre2LightStore > Ogre2LightStorePtr
Definition: Ogre2RenderTypes.hh:122
shared_ptr< Ogre2SensorStore > Ogre2SensorStorePtr
Definition: Ogre2RenderTypes.hh:126
shared_ptr< Ogre2VisualStore > Ogre2VisualStorePtr
Definition: Ogre2RenderTypes.hh:128
BaseSubMeshStore< Ogre2SubMesh > Ogre2SubMeshStore
Definition: Ogre2RenderTypes.hh:76
shared_ptr< Ogre2NodeStore > Ogre2NodeStorePtr
Definition: Ogre2RenderTypes.hh:123
shared_ptr< Ogre2SceneStore > Ogre2SceneStorePtr
Definition: Ogre2RenderTypes.hh:125
BaseGeometryStore< Ogre2Geometry > Ogre2GeometryStore
Definition: Ogre2RenderTypes.hh:69