Ignition Rendering

API Reference

6.3.1
OgreStorage.hh
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2015 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_OGRE_OGRESTORAGE_HH_
18 #define IGNITION_RENDERING_OGRE_OGRESTORAGE_HH_
19 
20 #include <memory>
22 
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 BaseSceneStore<OgreScene>;
43  template class BaseNodeStore<OgreNode>;
44  template class BaseLightStore<OgreLight>;
45  template class BaseSensorStore<OgreSensor>;
46  template class BaseVisualStore<OgreVisual>;
47  template class BaseGeometryStore<OgreGeometry>;
48  template class BaseSubMeshStore<OgreSubMesh>;
49  template class BaseMaterialMap<OgreMaterial>;
50 #endif
51 
52  typedef BaseSceneStore<OgreScene> OgreSceneStore;
53  typedef BaseNodeStore<OgreNode> OgreNodeStore;
54  typedef BaseLightStore<OgreLight> OgreLightStore;
55  typedef BaseSensorStore<OgreSensor> OgreSensorStore;
56  typedef BaseVisualStore<OgreVisual> OgreVisualStore;
57  typedef BaseGeometryStore<OgreGeometry> OgreGeometryStore;
58  typedef BaseSubMeshStore<OgreSubMesh> OgreSubMeshStore;
59  typedef BaseMaterialMap<OgreMaterial> OgreMaterialMap;
60 
69  }
70  }
71 }
72 #endif
BaseMaterialMap< OgreMaterial > OgreMaterialMap
Definition: OgreRenderTypes.hh:77
shared_ptr< OgreVisualStore > OgreVisualStorePtr
Definition: OgreRenderTypes.hh:125
shared_ptr< OgreLightStore > OgreLightStorePtr
Definition: OgreRenderTypes.hh:98
shared_ptr< OgreNodeStore > OgreNodeStorePtr
Definition: OgreRenderTypes.hh:105
BaseSceneStore< OgreScene > OgreSceneStore
Definition: OgreRenderTypes.hh:68
BaseLightStore< OgreLight > OgreLightStore
Definition: OgreRenderTypes.hh:72
BaseSubMeshStore< OgreSubMesh > OgreSubMeshStore
Definition: OgreRenderTypes.hh:76
shared_ptr< OgreMaterialMap > OgreMaterialMapPtr
Definition: OgreRenderTypes.hh:101
shared_ptr< OgreSensorStore > OgreSensorStorePtr
Definition: OgreRenderTypes.hh:118
shared_ptr< OgreSceneStore > OgreSceneStorePtr
Definition: OgreRenderTypes.hh:116
BaseGeometryStore< OgreGeometry > OgreGeometryStore
Definition: OgreRenderTypes.hh:75
BaseVisualStore< OgreVisual > OgreVisualStore
Definition: OgreRenderTypes.hh:74
BaseSensorStore< OgreSensor > OgreSensorStore
Definition: OgreRenderTypes.hh:73
BaseNodeStore< OgreNode > OgreNodeStore
Definition: OgreRenderTypes.hh:71
shared_ptr< OgreSubMeshStore > OgreSubMeshStorePtr
Definition: OgreRenderTypes.hh:121
shared_ptr< OgreGeometryStore > OgreGeometryStorePtr
Definition: OgreRenderTypes.hh:87