Gazebo Rendering

API Reference

9.0.0~pre2
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 GZ_RENDERING_OGRE_OGRESTORAGE_HH_
18#define GZ_RENDERING_OGRE_OGRESTORAGE_HH_
19
20#include <memory>
22
31
32namespace gz
33{
34 namespace rendering
35 {
36 inline namespace GZ_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/gazebosim/gz-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