InteractiveMarkerPose.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 visualization_msgs/InteractiveMarkerPose.msg
3 // DO NOT EDIT!
4 
5 
6 #ifndef VISUALIZATION_MSGS_MESSAGE_INTERACTIVEMARKERPOSE_H
7 #define VISUALIZATION_MSGS_MESSAGE_INTERACTIVEMARKERPOSE_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 <std_msgs/Header.h>
20 #include <geometry_msgs/Pose.h>
21 
22 namespace visualization_msgs
23 {
24 template <class ContainerAllocator>
26 {
28 
30  : header()
31  , pose()
32  , name() {
33  }
34  InteractiveMarkerPose_(const ContainerAllocator& _alloc)
35  : header(_alloc)
36  , pose(_alloc)
37  , name(_alloc) {
38  (void)_alloc;
39  }
40 
41 
42 
43  typedef ::std_msgs::Header_<ContainerAllocator> _header_type;
45 
46  typedef ::geometry_msgs::Pose_<ContainerAllocator> _pose_type;
48 
49  typedef std::basic_string<char, std::char_traits<char>, typename ContainerAllocator::template rebind<char>::other > _name_type;
51 
52 
53 
54 
55 
56  typedef std::shared_ptr< ::visualization_msgs::InteractiveMarkerPose_<ContainerAllocator> > Ptr;
57  typedef std::shared_ptr< ::visualization_msgs::InteractiveMarkerPose_<ContainerAllocator> const> ConstPtr;
58 
59 }; // struct InteractiveMarkerPose_
60 
61 typedef ::visualization_msgs::InteractiveMarkerPose_<std::allocator<void> > InteractiveMarkerPose;
62 
63 typedef std::shared_ptr< ::visualization_msgs::InteractiveMarkerPose > InteractiveMarkerPosePtr;
64 typedef std::shared_ptr< ::visualization_msgs::InteractiveMarkerPose const> InteractiveMarkerPoseConstPtr;
65 
66 // constants requiring out of line definition
67 
68 
69 
70 template<typename ContainerAllocator>
71 std::ostream& operator<<(std::ostream& s, const ::visualization_msgs::InteractiveMarkerPose_<ContainerAllocator> & v)
72 {
74 return s;
75 }
76 
77 
78 template<typename ContainerAllocator1, typename ContainerAllocator2>
79 bool operator==(const ::visualization_msgs::InteractiveMarkerPose_<ContainerAllocator1> & lhs, const ::visualization_msgs::InteractiveMarkerPose_<ContainerAllocator2> & rhs)
80 {
81  return lhs.header == rhs.header &&
82  lhs.pose == rhs.pose &&
83  lhs.name == rhs.name;
84 }
85 
86 template<typename ContainerAllocator1, typename ContainerAllocator2>
87 bool operator!=(const ::visualization_msgs::InteractiveMarkerPose_<ContainerAllocator1> & lhs, const ::visualization_msgs::InteractiveMarkerPose_<ContainerAllocator2> & rhs)
88 {
89  return !(lhs == rhs);
90 }
91 
92 
93 } // namespace visualization_msgs
94 
95 namespace roswrap
96 {
97 namespace message_traits
98 {
99 
100 
101 
102 
103 
104 template <class ContainerAllocator>
106  : FalseType
107  { };
108 
109 template <class ContainerAllocator>
111  : FalseType
112  { };
113 
114 template <class ContainerAllocator>
116  : TrueType
117  { };
118 
119 template <class ContainerAllocator>
121  : TrueType
122  { };
123 
124 template <class ContainerAllocator>
126  : TrueType
127  { };
128 
129 template <class ContainerAllocator>
131  : TrueType
132  { };
133 
134 
135 template<class ContainerAllocator>
136 struct MD5Sum< ::visualization_msgs::InteractiveMarkerPose_<ContainerAllocator> >
137 {
138  static const char* value()
139  {
140  return "a6e6833209a196a38d798dadb02c81f8";
141  }
142 
143  static const char* value(const ::visualization_msgs::InteractiveMarkerPose_<ContainerAllocator>&) { return value(); }
144  static const uint64_t static_value1 = 0xa6e6833209a196a3ULL;
145  static const uint64_t static_value2 = 0x8d798dadb02c81f8ULL;
146 };
147 
148 template<class ContainerAllocator>
150 {
151  static const char* value()
152  {
153  return "visualization_msgs/InteractiveMarkerPose";
154  }
155 
156  static const char* value(const ::visualization_msgs::InteractiveMarkerPose_<ContainerAllocator>&) { return value(); }
157 };
158 
159 template<class ContainerAllocator>
161 {
162  static const char* value()
163  {
164  return "# Time/frame info.\n"
165 "Header header\n"
166 "\n"
167 "# Initial pose. Also, defines the pivot point for rotations.\n"
168 "geometry_msgs/Pose pose\n"
169 "\n"
170 "# Identifying string. Must be globally unique in\n"
171 "# the topic that this message is sent through.\n"
172 "string name\n"
173 "\n"
174 "================================================================================\n"
175 "MSG: std_msgs/Header\n"
176 "# Standard metadata for higher-level stamped data types.\n"
177 "# This is generally used to communicate timestamped data \n"
178 "# in a particular coordinate frame.\n"
179 "# \n"
180 "# sequence ID: consecutively increasing ID \n"
181 "uint32 seq\n"
182 "#Two-integer timestamp that is expressed as:\n"
183 "# * stamp.sec: seconds (stamp_secs) since epoch (in Python the variable is called 'secs')\n"
184 "# * stamp.nsec: nanoseconds since stamp_secs (in Python the variable is called 'nsecs')\n"
185 "# time-handling sugar is provided by the client library\n"
186 "time stamp\n"
187 "#Frame this data is associated with\n"
188 "string frame_id\n"
189 "\n"
190 "================================================================================\n"
191 "MSG: geometry_msgs/Pose\n"
192 "# A representation of pose in free space, composed of position and orientation. \n"
193 "Point position\n"
194 "Quaternion orientation\n"
195 "\n"
196 "================================================================================\n"
197 "MSG: geometry_msgs/Point\n"
198 "# This contains the position of a point in free space\n"
199 "float64 x\n"
200 "float64 y\n"
201 "float64 z\n"
202 "\n"
203 "================================================================================\n"
204 "MSG: geometry_msgs/Quaternion\n"
205 "# This represents an orientation in free space in quaternion form.\n"
206 "\n"
207 "float64 x\n"
208 "float64 y\n"
209 "float64 z\n"
210 "float64 w\n"
211 ;
212  }
213 
214  static const char* value(const ::visualization_msgs::InteractiveMarkerPose_<ContainerAllocator>&) { return value(); }
215 };
216 
217 } // namespace message_traits
218 } // namespace roswrap
219 
220 namespace roswrap
221 {
222 namespace serialization
223 {
224 
225  template<class ContainerAllocator> struct Serializer< ::visualization_msgs::InteractiveMarkerPose_<ContainerAllocator> >
226  {
227  template<typename Stream, typename T> inline static void allInOne(Stream& stream, T m)
228  {
229  stream.next(m.header);
230  stream.next(m.pose);
231  stream.next(m.name);
232  }
233 
235  }; // struct InteractiveMarkerPose_
236 
237 } // namespace serialization
238 } // namespace roswrap
239 
240 namespace roswrap
241 {
242 namespace message_operations
243 {
244 
245 template<class ContainerAllocator>
247 {
248  template<typename Stream> static void stream(Stream& s, const std::string& indent, const ::visualization_msgs::InteractiveMarkerPose_<ContainerAllocator>& v)
249  {
250  s << indent << "header: ";
251  s << std::endl;
253  s << indent << "pose: ";
254  s << std::endl;
256  s << indent << "name: ";
257  Printer<std::basic_string<char, std::char_traits<char>, typename ContainerAllocator::template rebind<char>::other > >::stream(s, indent + " ", v.name);
258  }
259 };
260 
261 } // namespace message_operations
262 } // namespace roswrap
263 
264 #endif // VISUALIZATION_MSGS_MESSAGE_INTERACTIVEMARKERPOSE_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
roswrap::message_traits::DataType< ::visualization_msgs::InteractiveMarkerPose_< ContainerAllocator > >::value
static const char * value()
Definition: InteractiveMarkerPose.h:151
visualization_msgs::operator!=
bool operator!=(const ::visualization_msgs::ImageMarker_< ContainerAllocator1 > &lhs, const ::visualization_msgs::ImageMarker_< ContainerAllocator2 > &rhs)
Definition: ImageMarker.h:197
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
visualization_msgs::InteractiveMarkerPose_::_pose_type
::geometry_msgs::Pose_< ContainerAllocator > _pose_type
Definition: InteractiveMarkerPose.h:46
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
const
#define const
Definition: getopt.c:38
roswrap::message_traits::MD5Sum< ::visualization_msgs::InteractiveMarkerPose_< ContainerAllocator > >::value
static const char * value(const ::visualization_msgs::InteractiveMarkerPose_< ContainerAllocator > &)
Definition: InteractiveMarkerPose.h:143
s
XmlRpcServer s
Pose.h
visualization_msgs::InteractiveMarkerPose_::InteractiveMarkerPose_
InteractiveMarkerPose_()
Definition: InteractiveMarkerPose.h:29
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
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
visualization_msgs::operator==
bool operator==(const ::visualization_msgs::ImageMarker_< ContainerAllocator1 > &lhs, const ::visualization_msgs::ImageMarker_< ContainerAllocator2 > &rhs)
Definition: ImageMarker.h:179
visualization_msgs::InteractiveMarkerPose_::name
_name_type name
Definition: InteractiveMarkerPose.h:50
roswrap::message_traits::DataType
Specialize to provide the datatype for a message.
Definition: message_traits.h:135
roswrap::message_traits::Definition
Specialize to provide the definition for a message.
Definition: message_traits.h:152
visualization_msgs::InteractiveMarkerPose_::_header_type
::std_msgs::Header_< ContainerAllocator > _header_type
Definition: InteractiveMarkerPose.h:43
visualization_msgs::operator<<
std::ostream & operator<<(std::ostream &s, const ::visualization_msgs::ImageMarker_< ContainerAllocator > &v)
Definition: ImageMarker.h:171
roswrap::message_traits::DataType< ::visualization_msgs::InteractiveMarkerPose_< ContainerAllocator > >::value
static const char * value(const ::visualization_msgs::InteractiveMarkerPose_< ContainerAllocator > &)
Definition: InteractiveMarkerPose.h:156
geometry_msgs::Pose_
Definition: Pose.h:25
visualization_msgs::InteractiveMarkerPose_::pose
_pose_type pose
Definition: InteractiveMarkerPose.h:47
roswrap::serialization::Serializer< ::visualization_msgs::InteractiveMarkerPose_< ContainerAllocator > >::allInOne
static void allInOne(Stream &stream, T m)
Definition: InteractiveMarkerPose.h:227
visualization_msgs::InteractiveMarkerPose_::Type
InteractiveMarkerPose_< ContainerAllocator > Type
Definition: InteractiveMarkerPose.h:27
roswrap
Definition: param_modi.cpp:41
visualization_msgs::InteractiveMarkerPose_::InteractiveMarkerPose_
InteractiveMarkerPose_(const ContainerAllocator &_alloc)
Definition: InteractiveMarkerPose.h:34
roswrap::message_operations::Printer
Definition: message_operations.h:40
std_msgs::Header_
Definition: Header.h:23
visualization_msgs::InteractiveMarkerPose_::ConstPtr
std::shared_ptr< ::visualization_msgs::InteractiveMarkerPose_< ContainerAllocator > const > ConstPtr
Definition: InteractiveMarkerPose.h:57
visualization_msgs::InteractiveMarkerPoseConstPtr
std::shared_ptr< ::visualization_msgs::InteractiveMarkerPose const > InteractiveMarkerPoseConstPtr
Definition: InteractiveMarkerPose.h:64
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
visualization_msgs
Definition: ImageMarker.h:26
visualization_msgs::InteractiveMarkerPosePtr
std::shared_ptr< ::visualization_msgs::InteractiveMarkerPose > InteractiveMarkerPosePtr
Definition: InteractiveMarkerPose.h:63
visualization_msgs::InteractiveMarkerPose_::header
_header_type header
Definition: InteractiveMarkerPose.h:44
roswrap::message_traits::IsMessage
Am I message or not.
Definition: message_traits.h:112
visualization_msgs::InteractiveMarkerPose_
Definition: InteractiveMarkerPose.h:25
sick_scan_base.h
roswrap::serialization::Stream
Stream base-class, provides common functionality for IStream and OStream.
Definition: serialization.h:705
visualization_msgs::InteractiveMarkerPose
::visualization_msgs::InteractiveMarkerPose_< std::allocator< void > > InteractiveMarkerPose
Definition: InteractiveMarkerPose.h:61
visualization_msgs::InteractiveMarkerPose_::_name_type
std::basic_string< char, std::char_traits< char >, typename ContainerAllocator::template rebind< char >::other > _name_type
Definition: InteractiveMarkerPose.h:49
visualization_msgs::InteractiveMarkerPose_::Ptr
std::shared_ptr< ::visualization_msgs::InteractiveMarkerPose_< ContainerAllocator > > Ptr
Definition: InteractiveMarkerPose.h:56
roswrap::message_traits::Definition< ::visualization_msgs::InteractiveMarkerPose_< ContainerAllocator > >::value
static const char * value(const ::visualization_msgs::InteractiveMarkerPose_< ContainerAllocator > &)
Definition: InteractiveMarkerPose.h:214
roswrap::message_operations::Printer< ::visualization_msgs::InteractiveMarkerPose_< ContainerAllocator > >::stream
static void stream(Stream &s, const std::string &indent, const ::visualization_msgs::InteractiveMarkerPose_< ContainerAllocator > &v)
Definition: InteractiveMarkerPose.h:248
roswrap::message_traits::MD5Sum< ::visualization_msgs::InteractiveMarkerPose_< ContainerAllocator > >::value
static const char * value()
Definition: InteractiveMarkerPose.h:138
Header.h
roswrap::message_traits::Definition< ::visualization_msgs::InteractiveMarkerPose_< ContainerAllocator > >::value
static const char * value()
Definition: InteractiveMarkerPose.h:162


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