MapMetaData.h
Go to the documentation of this file.
1 #include "sick_scan/sick_scan_base.h" /* Base definitions included in all header files, added by add_sick_scan_base_header.py. Do not edit this line. */
2 // Generated by gencpp from file nav_msgs/MapMetaData.msg
3 // DO NOT EDIT!
4 
5 
6 #ifndef NAV_MSGS_MESSAGE_MAPMETADATA_H
7 #define NAV_MSGS_MESSAGE_MAPMETADATA_H
8 
9 
10 #include <string>
11 #include <vector>
12 #include <map>
13 
14 #include <ros/types.h>
15 #include <ros/serialization.h>
16 #include <ros/builtin_message_traits.h>
17 #include <ros/message_operations.h>
18 
19 #include <geometry_msgs/Pose.h>
20 
21 namespace nav_msgs
22 {
23 template <class ContainerAllocator>
25 {
27 
29  : map_load_time()
30  , resolution(0.0)
31  , width(0)
32  , height(0)
33  , origin() {
34  }
35  MapMetaData_(const ContainerAllocator& _alloc)
36  : map_load_time()
37  , resolution(0.0)
38  , width(0)
39  , height(0)
40  , origin(_alloc) {
41  (void)_alloc;
42  }
43 
44 
45 
48 
49  typedef float _resolution_type;
51 
52  typedef uint32_t _width_type;
54 
55  typedef uint32_t _height_type;
57 
58  typedef ::geometry_msgs::Pose_<ContainerAllocator> _origin_type;
60 
61 
62 
63 
64 
65  typedef std::shared_ptr< ::nav_msgs::MapMetaData_<ContainerAllocator> > Ptr;
66  typedef std::shared_ptr< ::nav_msgs::MapMetaData_<ContainerAllocator> const> ConstPtr;
67 
68 }; // struct MapMetaData_
69 
70 typedef ::nav_msgs::MapMetaData_<std::allocator<void> > MapMetaData;
71 
72 typedef std::shared_ptr< ::nav_msgs::MapMetaData > MapMetaDataPtr;
73 typedef std::shared_ptr< ::nav_msgs::MapMetaData const> MapMetaDataConstPtr;
74 
75 // constants requiring out of line definition
76 
77 
78 
79 template<typename ContainerAllocator>
80 std::ostream& operator<<(std::ostream& s, const ::nav_msgs::MapMetaData_<ContainerAllocator> & v)
81 {
83 return s;
84 }
85 
86 
87 template<typename ContainerAllocator1, typename ContainerAllocator2>
88 bool operator==(const ::nav_msgs::MapMetaData_<ContainerAllocator1> & lhs, const ::nav_msgs::MapMetaData_<ContainerAllocator2> & rhs)
89 {
90  return lhs.map_load_time == rhs.map_load_time &&
91  lhs.resolution == rhs.resolution &&
92  lhs.width == rhs.width &&
93  lhs.height == rhs.height &&
94  lhs.origin == rhs.origin;
95 }
96 
97 template<typename ContainerAllocator1, typename ContainerAllocator2>
98 bool operator!=(const ::nav_msgs::MapMetaData_<ContainerAllocator1> & lhs, const ::nav_msgs::MapMetaData_<ContainerAllocator2> & rhs)
99 {
100  return !(lhs == rhs);
101 }
102 
103 
104 } // namespace nav_msgs
105 
106 namespace roswrap
107 {
108 namespace message_traits
109 {
110 
111 
112 
113 
114 
115 template <class ContainerAllocator>
116 struct IsFixedSize< ::nav_msgs::MapMetaData_<ContainerAllocator> >
117  : TrueType
118  { };
119 
120 template <class ContainerAllocator>
121 struct IsFixedSize< ::nav_msgs::MapMetaData_<ContainerAllocator> const>
122  : TrueType
123  { };
124 
125 template <class ContainerAllocator>
126 struct IsMessage< ::nav_msgs::MapMetaData_<ContainerAllocator> >
127  : TrueType
128  { };
129 
130 template <class ContainerAllocator>
131 struct IsMessage< ::nav_msgs::MapMetaData_<ContainerAllocator> const>
132  : TrueType
133  { };
134 
135 template <class ContainerAllocator>
136 struct HasHeader< ::nav_msgs::MapMetaData_<ContainerAllocator> >
137  : FalseType
138  { };
139 
140 template <class ContainerAllocator>
141 struct HasHeader< ::nav_msgs::MapMetaData_<ContainerAllocator> const>
142  : FalseType
143  { };
144 
145 
146 template<class ContainerAllocator>
147 struct MD5Sum< ::nav_msgs::MapMetaData_<ContainerAllocator> >
148 {
149  static const char* value()
150  {
151  return "10cfc8a2818024d3248802c00c95f11b";
152  }
153 
154  static const char* value(const ::nav_msgs::MapMetaData_<ContainerAllocator>&) { return value(); }
155  static const uint64_t static_value1 = 0x10cfc8a2818024d3ULL;
156  static const uint64_t static_value2 = 0x248802c00c95f11bULL;
157 };
158 
159 template<class ContainerAllocator>
160 struct DataType< ::nav_msgs::MapMetaData_<ContainerAllocator> >
161 {
162  static const char* value()
163  {
164  return "nav_msgs/MapMetaData";
165  }
166 
167  static const char* value(const ::nav_msgs::MapMetaData_<ContainerAllocator>&) { return value(); }
168 };
169 
170 template<class ContainerAllocator>
171 struct Definition< ::nav_msgs::MapMetaData_<ContainerAllocator> >
172 {
173  static const char* value()
174  {
175  return "# This hold basic information about the characterists of the OccupancyGrid\n"
176 "\n"
177 "# The time at which the map was loaded\n"
178 "time map_load_time\n"
179 "# The map resolution [m/cell]\n"
180 "float32 resolution\n"
181 "# Map width [cells]\n"
182 "uint32 width\n"
183 "# Map height [cells]\n"
184 "uint32 height\n"
185 "# The origin of the map [m, m, rad]. This is the real-world pose of the\n"
186 "# cell (0,0) in the map.\n"
187 "geometry_msgs/Pose origin\n"
188 "================================================================================\n"
189 "MSG: geometry_msgs/Pose\n"
190 "# A representation of pose in free space, composed of position and orientation. \n"
191 "Point position\n"
192 "Quaternion orientation\n"
193 "\n"
194 "================================================================================\n"
195 "MSG: geometry_msgs/Point\n"
196 "# This contains the position of a point in free space\n"
197 "float64 x\n"
198 "float64 y\n"
199 "float64 z\n"
200 "\n"
201 "================================================================================\n"
202 "MSG: geometry_msgs/Quaternion\n"
203 "# This represents an orientation in free space in quaternion form.\n"
204 "\n"
205 "float64 x\n"
206 "float64 y\n"
207 "float64 z\n"
208 "float64 w\n"
209 ;
210  }
211 
212  static const char* value(const ::nav_msgs::MapMetaData_<ContainerAllocator>&) { return value(); }
213 };
214 
215 } // namespace message_traits
216 } // namespace roswrap
217 
218 namespace roswrap
219 {
220 namespace serialization
221 {
222 
223  template<class ContainerAllocator> struct Serializer< ::nav_msgs::MapMetaData_<ContainerAllocator> >
224  {
225  template<typename Stream, typename T> inline static void allInOne(Stream& stream, T m)
226  {
227  stream.next(m.map_load_time);
228  stream.next(m.resolution);
229  stream.next(m.width);
230  stream.next(m.height);
231  stream.next(m.origin);
232  }
233 
235  }; // struct MapMetaData_
236 
237 } // namespace serialization
238 } // namespace roswrap
239 
240 namespace roswrap
241 {
242 namespace message_operations
243 {
244 
245 template<class ContainerAllocator>
246 struct Printer< ::nav_msgs::MapMetaData_<ContainerAllocator> >
247 {
248  template<typename Stream> static void stream(Stream& s, const std::string& indent, const ::nav_msgs::MapMetaData_<ContainerAllocator>& v)
249  {
250  s << indent << "map_load_time: ";
251  Printer<ros::Time>::stream(s, indent + " ", v.map_load_time);
252  s << indent << "resolution: ";
253  Printer<float>::stream(s, indent + " ", v.resolution);
254  s << indent << "width: ";
255  Printer<uint32_t>::stream(s, indent + " ", v.width);
256  s << indent << "height: ";
257  Printer<uint32_t>::stream(s, indent + " ", v.height);
258  s << indent << "origin: ";
259  s << std::endl;
261  }
262 };
263 
264 } // namespace message_operations
265 } // namespace roswrap
266 
267 #endif // NAV_MSGS_MESSAGE_MAPMETADATA_H
roswrap::message_traits::FalseType
Base type for compile-type true/false tests. Compatible with Boost.MPL. classes inheriting from this ...
Definition: message_traits.h:89
multiscan_pcap_player.indent
indent
Definition: multiscan_pcap_player.py:252
roswrap::serialization::Serializer
Templated serialization class. Default implementation provides backwards compatibility with old messa...
Definition: serialization.h:120
roswrap::message_traits::HasHeader
HasHeader informs whether or not there is a header that gets serialized as the first thing in the mes...
Definition: message_traits.h:107
roswrap::message_traits::DataType< ::nav_msgs::MapMetaData_< ContainerAllocator > >::value
static const char * value(const ::nav_msgs::MapMetaData_< ContainerAllocator > &)
Definition: MapMetaData.h:167
nav_msgs::MapMetaData_
Definition: MapMetaData.h:24
roswrap::message_traits::DataType< ::nav_msgs::MapMetaData_< ContainerAllocator > >::value
static const char * value()
Definition: MapMetaData.h:162
const
#define const
Definition: getopt.c:38
s
XmlRpcServer s
nav_msgs::MapMetaData
::nav_msgs::MapMetaData_< std::allocator< void > > MapMetaData
Definition: MapMetaData.h:70
Pose.h
nav_msgs::MapMetaDataConstPtr
std::shared_ptr< ::nav_msgs::MapMetaData const > MapMetaDataConstPtr
Definition: MapMetaData.h:73
nav_msgs::MapMetaData_::Ptr
std::shared_ptr< ::nav_msgs::MapMetaData_< ContainerAllocator > > Ptr
Definition: MapMetaData.h:65
roswrap::message_operations::Printer::stream
static void stream(Stream &s, const std::string &indent, const M &value)
Definition: message_operations.h:43
roswrap::message_traits::IsFixedSize
A fixed-size datatype is one whose size is constant, i.e. it has no variable-length arrays or strings...
Definition: message_traits.h:103
nav_msgs::MapMetaData_::resolution
_resolution_type resolution
Definition: MapMetaData.h:50
nav_msgs::MapMetaData_::Type
MapMetaData_< ContainerAllocator > Type
Definition: MapMetaData.h:26
ros::message_operations::Printer
ROS_DECLARE_ALLINONE_SERIALIZER
#define ROS_DECLARE_ALLINONE_SERIALIZER
Declare your serializer to use an allInOne member instead of requiring 3 different serialization func...
Definition: serialization.h:74
nav_msgs::operator<<
std::ostream & operator<<(std::ostream &s, const ::nav_msgs::GetMapAction_< ContainerAllocator > &v)
Definition: GetMapAction.h:72
nav_msgs::MapMetaData_::ConstPtr
std::shared_ptr< ::nav_msgs::MapMetaData_< ContainerAllocator > const > ConstPtr
Definition: MapMetaData.h:66
roswrap::message_traits::DataType
Specialize to provide the datatype for a message.
Definition: message_traits.h:135
roswrap::message_traits::MD5Sum< ::nav_msgs::MapMetaData_< ContainerAllocator > >::value
static const char * value()
Definition: MapMetaData.h:149
roswrap::message_traits::Definition
Specialize to provide the definition for a message.
Definition: message_traits.h:152
nav_msgs::MapMetaData_::MapMetaData_
MapMetaData_()
Definition: MapMetaData.h:28
nav_msgs::MapMetaData_::_map_load_time_type
ros::Time _map_load_time_type
Definition: MapMetaData.h:46
roswrap::message_traits::Definition< ::nav_msgs::MapMetaData_< ContainerAllocator > >::value
static const char * value()
Definition: MapMetaData.h:173
geometry_msgs::Pose_< std::allocator< void > >
roswrap::serialization::Serializer< ::nav_msgs::MapMetaData_< ContainerAllocator > >::allInOne
static void allInOne(Stream &stream, T m)
Definition: MapMetaData.h:225
nav_msgs::MapMetaData_::width
_width_type width
Definition: MapMetaData.h:53
roswrap::message_traits::Definition< ::nav_msgs::MapMetaData_< ContainerAllocator > >::value
static const char * value(const ::nav_msgs::MapMetaData_< ContainerAllocator > &)
Definition: MapMetaData.h:212
nav_msgs::MapMetaData_::height
_height_type height
Definition: MapMetaData.h:56
nav_msgs::MapMetaData_::_height_type
uint32_t _height_type
Definition: MapMetaData.h:55
roswrap::message_traits::MD5Sum< ::nav_msgs::MapMetaData_< ContainerAllocator > >::value
static const char * value(const ::nav_msgs::MapMetaData_< ContainerAllocator > &)
Definition: MapMetaData.h:154
roswrap
Definition: param_modi.cpp:41
nav_msgs::MapMetaData_::MapMetaData_
MapMetaData_(const ContainerAllocator &_alloc)
Definition: MapMetaData.h:35
roswrap::message_operations::Printer
Definition: message_operations.h:40
nav_msgs::MapMetaData_::_origin_type
::geometry_msgs::Pose_< ContainerAllocator > _origin_type
Definition: MapMetaData.h:58
roswrap::message_traits::TrueType
Base type for compile-type true/false tests. Compatible with Boost.MPL. classes inheriting from this ...
Definition: message_traits.h:79
roswrap::message_traits::MD5Sum
Specialize to provide the md5sum for a message.
Definition: message_traits.h:118
nav_msgs
Definition: GetMap.h:16
ros::Time
roswrap::message_traits::IsMessage
Am I message or not.
Definition: message_traits.h:112
nav_msgs::operator==
bool operator==(const ::nav_msgs::GetMapAction_< ContainerAllocator1 > &lhs, const ::nav_msgs::GetMapAction_< ContainerAllocator2 > &rhs)
Definition: GetMapAction.h:80
nav_msgs::MapMetaData_::_width_type
uint32_t _width_type
Definition: MapMetaData.h:52
nav_msgs::MapMetaDataPtr
std::shared_ptr< ::nav_msgs::MapMetaData > MapMetaDataPtr
Definition: MapMetaData.h:72
roswrap::message_operations::Printer< ::nav_msgs::MapMetaData_< ContainerAllocator > >::stream
static void stream(Stream &s, const std::string &indent, const ::nav_msgs::MapMetaData_< ContainerAllocator > &v)
Definition: MapMetaData.h:248
sick_scan_base.h
roswrap::serialization::Stream
Stream base-class, provides common functionality for IStream and OStream.
Definition: serialization.h:705
nav_msgs::MapMetaData_::origin
_origin_type origin
Definition: MapMetaData.h:59
nav_msgs::MapMetaData_::map_load_time
_map_load_time_type map_load_time
Definition: MapMetaData.h:47
nav_msgs::MapMetaData_::_resolution_type
float _resolution_type
Definition: MapMetaData.h:49
nav_msgs::operator!=
bool operator!=(const ::nav_msgs::GetMapAction_< ContainerAllocator1 > &lhs, const ::nav_msgs::GetMapAction_< ContainerAllocator2 > &rhs)
Definition: GetMapAction.h:88


sick_scan_xd
Author(s): Michael Lehning , Jochen Sprickerhof , Martin Günther
autogenerated on Fri Oct 25 2024 02:47:08