gz/sim/components/World.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 GZ_GAZEBO_COMPONENTS_WORLD_HH_
18 #define GZ_GAZEBO_COMPONENTS_WORLD_HH_
19 
20 #include <sdf/World.hh>
21 
22 #include <istream>
23 #include <ostream>
24 
27 #include <gz/sim/config.hh>
28 
29 namespace ignition
30 {
31 namespace gazebo
32 {
33 // Inline bracket to help doxygen filtering.
34 inline namespace IGNITION_GAZEBO_VERSION_NAMESPACE {
35 
36 // The following is only needed to keep ABI compatibility
37 // TODO(azeey) Remove in main
38 namespace traits
39 {
40 template<>
41 class IsOutStreamable<std::ostream, sdf::World>
42 {
43  public: static constexpr bool value = false; // NOLINT
44 };
45 
46 template<>
47 class IsInStreamable<std::istream, sdf::World>
48 {
49  public: static constexpr bool value = false; // NOLINT
50 };
51 }
52 
53 namespace serializers
54 {
55 
59 template <>
61 {
62  public:
64  {
65  return _out;
66  }
67 
68  public:
70  {
71  return _in;
72  }
73 };
74 }
75 
76 namespace components
77 {
80  IGN_GAZEBO_REGISTER_COMPONENT("ign_gazebo_components.World", World)
81 
82 
84  IGN_GAZEBO_REGISTER_COMPONENT("ign_gazebo_components.WorldSdf", WorldSdf)
85 }
86 }
87 }
88 }
89 
90 #endif
This library is part of the Gazebo project.
static std::istream & Deserialize(std::istream &_in, sdf::World &)
Definition: gz/sim/components/World.hh:69
#define IGN_GAZEBO_REGISTER_COMPONENT(_compType, _classname)
Static component registration macro.
Definition: gz/sim/components/Factory.hh:509
Type trait that determines if a operator>> is defined on Stream and DataType, i.e,...
Definition: gz/sim/components/Component.hh:86
Type trait that determines if a operator<< is defined on Stream and DataType, i.e,...
Definition: gz/sim/components/Component.hh:62
Component< NoData, class WorldTag > World
A component that identifies an entity as being a world.
Definition: gz/sim/components/World.hh:79
static constexpr bool value
Definition: gz/sim/components/Component.hh:96
STL class.
IGN_GAZEBO_REGISTER_COMPONENT("ign_gazebo_components.Actor", Actor) using AnimationTime
Time in seconds within animation being currently played.
static constexpr bool value
Definition: gz/sim/components/Component.hh:72
This class provides wrappers around entities and components which are more convenient and straight-fo...
Definition: gz/sim/World.hh:61
Default serializer template to call stream operators only on types that support them....
Definition: gz/sim/components/Component.hh:108
A component type that wraps any data type. The intention is for this class to be used to create simpl...
Definition: gz/sim/components/Component.hh:324
STL namespace.
static std::ostream & Serialize(std::ostream &_out, const sdf::World &)
Definition: gz/sim/components/World.hh:63
STL class.