AccelStamped.h
Go to the documentation of this file.
1 // Generated by gencpp from file geometry_msgs/AccelStamped.msg
2 // DO NOT EDIT!
3 
4 
5 #ifndef GEOMETRY_MSGS_MESSAGE_ACCELSTAMPED_H
6 #define GEOMETRY_MSGS_MESSAGE_ACCELSTAMPED_H
7 
8 
9 #include <string>
10 #include <vector>
11 #include <map>
12 
13 #include <ros/types.h>
14 #include <ros/serialization.h>
16 #include <ros/message_operations.h>
17 
18 #include <std_msgs/Header.h>
19 #include <geometry_msgs/Accel.h>
20 
21 namespace geometry_msgs
22 {
23 template <class ContainerAllocator>
25 {
27 
29  : header()
30  , accel() {
31  }
32  AccelStamped_(const ContainerAllocator& _alloc)
33  : header(_alloc)
34  , accel(_alloc) {
35  (void)_alloc;
36  }
37 
38 
39 
40  typedef ::std_msgs::Header_<ContainerAllocator> _header_type;
41  _header_type header;
42 
43  typedef ::geometry_msgs::Accel_<ContainerAllocator> _accel_type;
44  _accel_type accel;
45 
46 
47 
48 
49  typedef std::shared_ptr< ::geometry_msgs::AccelStamped_<ContainerAllocator> > Ptr;
50  typedef std::shared_ptr< ::geometry_msgs::AccelStamped_<ContainerAllocator> const> ConstPtr;
51 
52 }; // struct AccelStamped_
53 
54 typedef ::geometry_msgs::AccelStamped_<std::allocator<void> > AccelStamped;
55 
56 typedef std::shared_ptr< ::geometry_msgs::AccelStamped > AccelStampedPtr;
57 typedef std::shared_ptr< ::geometry_msgs::AccelStamped const> AccelStampedConstPtr;
58 
59 // constants requiring out of line definition
60 
61 
62 
63 template<typename ContainerAllocator>
64 std::ostream& operator<<(std::ostream& s, const ::geometry_msgs::AccelStamped_<ContainerAllocator> & v)
65 {
67 return s;
68 }
69 
70 } // namespace geometry_msgs
71 
72 namespace rs2rosinternal
73 {
74 namespace message_traits
75 {
76 
77 
78 
79 // BOOLTRAITS {'IsFixedSize': False, 'IsMessage': True, 'HasHeader': True}
80 // {'std_msgs': ['/opt/ros/kinetic/share/std_msgs/cmake/../msg'], 'geometry_msgs': ['/tmp/binarydeb/ros-kinetic-geometry-msgs-1.12.5/msg']}
81 
82 // !!!!!!!!!!! ['__class__', '__delattr__', '__dict__', '__doc__', '__eq__', '__format__', '__getattribute__', '__hash__', '__init__', '__module__', '__ne__', '__new__', '__reduce__', '__reduce_ex__', '__repr__', '__setattr__', '__sizeof__', '__str__', '__subclasshook__', '__weakref__', '_parsed_fields', 'constants', 'fields', 'full_name', 'has_header', 'header_present', 'names', 'package', 'parsed_fields', 'short_name', 'text', 'types']
83 
84 
85 
86 
87 template <class ContainerAllocator>
88 struct IsFixedSize< ::geometry_msgs::AccelStamped_<ContainerAllocator> >
89  : FalseType
90  { };
91 
92 template <class ContainerAllocator>
93 struct IsFixedSize< ::geometry_msgs::AccelStamped_<ContainerAllocator> const>
94  : FalseType
95  { };
96 
97 template <class ContainerAllocator>
98 struct IsMessage< ::geometry_msgs::AccelStamped_<ContainerAllocator> >
99  : TrueType
100  { };
101 
102 template <class ContainerAllocator>
103 struct IsMessage< ::geometry_msgs::AccelStamped_<ContainerAllocator> const>
104  : TrueType
105  { };
106 
107 template <class ContainerAllocator>
108 struct HasHeader< ::geometry_msgs::AccelStamped_<ContainerAllocator> >
109  : TrueType
110  { };
111 
112 template <class ContainerAllocator>
113 struct HasHeader< ::geometry_msgs::AccelStamped_<ContainerAllocator> const>
114  : TrueType
115  { };
116 
117 
118 template<class ContainerAllocator>
119 struct MD5Sum< ::geometry_msgs::AccelStamped_<ContainerAllocator> >
120 {
121  static const char* value()
122  {
123  return "d8a98a5d81351b6eb0578c78557e7659";
124  }
125 
126  static const char* value(const ::geometry_msgs::AccelStamped_<ContainerAllocator>&) { return value(); }
127  static const uint64_t static_value1 = 0xd8a98a5d81351b6eULL;
128  static const uint64_t static_value2 = 0xb0578c78557e7659ULL;
129 };
130 
131 template<class ContainerAllocator>
132 struct DataType< ::geometry_msgs::AccelStamped_<ContainerAllocator> >
133 {
134  static const char* value()
135  {
136  return "geometry_msgs/AccelStamped";
137  }
138 
139  static const char* value(const ::geometry_msgs::AccelStamped_<ContainerAllocator>&) { return value(); }
140 };
141 
142 template<class ContainerAllocator>
143 struct Definition< ::geometry_msgs::AccelStamped_<ContainerAllocator> >
144 {
145  static const char* value()
146  {
147  return "# An accel with reference coordinate frame and timestamp\n\
148 Header header\n\
149 Accel accel\n\
150 \n\
151 ================================================================================\n\
152 MSG: std_msgs/Header\n\
153 # Standard metadata for higher-level stamped data types.\n\
154 # This is generally used to communicate timestamped data \n\
155 # in a particular coordinate frame.\n\
156 # \n\
157 # sequence ID: consecutively increasing ID \n\
158 uint32 seq\n\
159 #Two-integer timestamp that is expressed as:\n\
160 # * stamp.sec: seconds (stamp_secs) since epoch (in Python the variable is called 'secs')\n\
161 # * stamp.nsec: nanoseconds since stamp_secs (in Python the variable is called 'nsecs')\n\
162 # time-handling sugar is provided by the client library\n\
163 time stamp\n\
164 #Frame this data is associated with\n\
165 # 0: no frame\n\
166 # 1: global frame\n\
167 string frame_id\n\
168 \n\
169 ================================================================================\n\
170 MSG: geometry_msgs/Accel\n\
171 # This expresses acceleration in free space broken into its linear and angular parts.\n\
172 Vector3 linear\n\
173 Vector3 angular\n\
174 \n\
175 ================================================================================\n\
176 MSG: geometry_msgs/Vector3\n\
177 # This represents a vector in free space. \n\
178 # It is only meant to represent a direction. Therefore, it does not\n\
179 # make sense to apply a translation to it (e.g., when applying a \n\
180 # generic rigid transformation to a Vector3, tf2 will only apply the\n\
181 # rotation). If you want your data to be translatable too, use the\n\
182 # geometry_msgs/Point message instead.\n\
183 \n\
184 float64 x\n\
185 float64 y\n\
186 float64 z\n\
187 ";
188  }
189 
190  static const char* value(const ::geometry_msgs::AccelStamped_<ContainerAllocator>&) { return value(); }
191 };
192 
193 } // namespace message_traits
194 } // namespace rs2rosinternal
195 
196 namespace rs2rosinternal
197 {
198 namespace serialization
199 {
200 
201  template<class ContainerAllocator> struct Serializer< ::geometry_msgs::AccelStamped_<ContainerAllocator> >
202  {
203  template<typename Stream, typename T> inline static void allInOne(Stream& stream, T m)
204  {
205  stream.next(m.header);
206  stream.next(m.accel);
207  }
208 
210  }; // struct AccelStamped_
211 
212 } // namespace serialization
213 } // namespace rs2rosinternal
214 
215 namespace rs2rosinternal
216 {
217 namespace message_operations
218 {
219 
220 template<class ContainerAllocator>
221 struct Printer< ::geometry_msgs::AccelStamped_<ContainerAllocator> >
222 {
223  template<typename Stream> static void stream(Stream& s, const std::string& indent, const ::geometry_msgs::AccelStamped_<ContainerAllocator>& v)
224  {
225  s << indent << "header: ";
226  s << std::endl;
228  s << indent << "accel: ";
229  s << std::endl;
231  }
232 };
233 
234 } // namespace message_operations
235 } // namespace rs2rosinternal
236 
237 #endif // GEOMETRY_MSGS_MESSAGE_ACCELSTAMPED_H
typedef void(APIENTRY *GLDEBUGPROC)(GLenum source
Base type for compile-type true/false tests. Compatible with Boost.MPL. classes inheriting from this ...
::geometry_msgs::AccelStamped_< std::allocator< void > > AccelStamped
Definition: AccelStamped.h:54
GLdouble s
const GLfloat * m
Definition: glext.h:6814
Specialize to provide the md5sum for a message.
::std_msgs::Header_< ContainerAllocator > _header_type
Definition: AccelStamped.h:40
static const char * value(const ::geometry_msgs::AccelStamped_< ContainerAllocator > &)
Definition: AccelStamped.h:139
Base type for compile-type true/false tests. Compatible with Boost.MPL. classes inheriting from this ...
GLsizei const GLchar *const * string
std::shared_ptr< ::geometry_msgs::AccelStamped > AccelStampedPtr
Definition: AccelStamped.h:56
Specialize to provide the datatype for a message.
HasHeader informs whether or not there is a header that gets serialized as the first thing in the mes...
GLuint GLuint stream
Definition: glext.h:1790
std::shared_ptr< ::geometry_msgs::AccelStamped_< ContainerAllocator > > Ptr
Definition: AccelStamped.h:49
A fixed-size datatype is one whose size is constant, i.e. it has no variable-length arrays or strings...
::geometry_msgs::Accel_< ContainerAllocator > _accel_type
Definition: AccelStamped.h:43
Stream base-class, provides common functionality for IStream and OStream.
AccelStamped_(const ContainerAllocator &_alloc)
Definition: AccelStamped.h:32
std::shared_ptr< ::geometry_msgs::AccelStamped_< ContainerAllocator > const > ConstPtr
Definition: AccelStamped.h:50
#define ROS_DECLARE_ALLINONE_SERIALIZER
Declare your serializer to use an allInOne member instead of requiring 3 different serialization func...
unsigned __int64 uint64_t
Definition: stdint.h:90
Specialize to provide the definition for a message.
static const char * value(const ::geometry_msgs::AccelStamped_< ContainerAllocator > &)
Definition: AccelStamped.h:126
static const char * value(const ::geometry_msgs::AccelStamped_< ContainerAllocator > &)
Definition: AccelStamped.h:190
static void stream(Stream &s, const std::string &indent, const ::geometry_msgs::AccelStamped_< ContainerAllocator > &v)
Definition: AccelStamped.h:223
Templated serialization class. Default implementation provides backwards compatibility with old messa...
std::shared_ptr< ::geometry_msgs::AccelStamped const > AccelStampedConstPtr
Definition: AccelStamped.h:57
GLdouble v
AccelStamped_< ContainerAllocator > Type
Definition: AccelStamped.h:26


librealsense2
Author(s): Sergey Dorodnicov , Doron Hirshberg , Mark Horn , Reagan Lopez , Itay Carpis
autogenerated on Mon May 3 2021 02:45:06