UInt32MultiArray.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 std_msgs/UInt32MultiArray.msg
3 // DO NOT EDIT!
4 
5 
6 #ifndef STD_MSGS_MESSAGE_UINT32MULTIARRAY_H
7 #define STD_MSGS_MESSAGE_UINT32MULTIARRAY_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 
20 
21 namespace std_msgs
22 {
23 template <class ContainerAllocator>
25 {
27 
29  : layout()
30  , data() {
31  }
32  UInt32MultiArray_(const ContainerAllocator& _alloc)
33  : layout(_alloc)
34  , data(_alloc) {
35  (void)_alloc;
36  }
37 
38 
39 
40  typedef ::std_msgs::MultiArrayLayout_<ContainerAllocator> _layout_type;
42 
43  typedef std::vector<uint32_t, typename ContainerAllocator::template rebind<uint32_t>::other > _data_type;
45 
46 
47 
48 
49  typedef std::shared_ptr< ::std_msgs::UInt32MultiArray_<ContainerAllocator> > Ptr;
50  typedef std::shared_ptr< ::std_msgs::UInt32MultiArray_<ContainerAllocator> const> ConstPtr;
51 
52 }; // struct UInt32MultiArray_
53 
54 typedef ::std_msgs::UInt32MultiArray_<std::allocator<void> > UInt32MultiArray;
55 
56 typedef std::shared_ptr< ::std_msgs::UInt32MultiArray > UInt32MultiArrayPtr;
57 typedef std::shared_ptr< ::std_msgs::UInt32MultiArray const> UInt32MultiArrayConstPtr;
58 
59 // constants requiring out of line definition
60 
61 
62 
63 template<typename ContainerAllocator>
64 std::ostream& operator<<(std::ostream& s, const ::std_msgs::UInt32MultiArray_<ContainerAllocator> & v)
65 {
67 return s;
68 }
69 
70 } // namespace std_msgs
71 
72 namespace roswrap
73 {
74 namespace message_traits
75 {
76 
77 
78 
79 // BOOLTRAITS {'IsFixedSize': False, 'IsMessage': True, 'HasHeader': False}
80 // {'std_msgs': ['/tmp/binarydeb/ros-kinetic-std-msgs-0.5.11/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< ::std_msgs::UInt32MultiArray_<ContainerAllocator> >
89  : FalseType
90  { };
91 
92 template <class ContainerAllocator>
93 struct IsFixedSize< ::std_msgs::UInt32MultiArray_<ContainerAllocator> const>
94  : FalseType
95  { };
96 
97 template <class ContainerAllocator>
98 struct IsMessage< ::std_msgs::UInt32MultiArray_<ContainerAllocator> >
99  : TrueType
100  { };
101 
102 template <class ContainerAllocator>
103 struct IsMessage< ::std_msgs::UInt32MultiArray_<ContainerAllocator> const>
104  : TrueType
105  { };
106 
107 template <class ContainerAllocator>
108 struct HasHeader< ::std_msgs::UInt32MultiArray_<ContainerAllocator> >
109  : FalseType
110  { };
111 
112 template <class ContainerAllocator>
113 struct HasHeader< ::std_msgs::UInt32MultiArray_<ContainerAllocator> const>
114  : FalseType
115  { };
116 
117 
118 template<class ContainerAllocator>
119 struct MD5Sum< ::std_msgs::UInt32MultiArray_<ContainerAllocator> >
120 {
121  static const char* value()
122  {
123  return "4d6a180abc9be191b96a7eda6c8a233d";
124  }
125 
126  static const char* value(const ::std_msgs::UInt32MultiArray_<ContainerAllocator>&) { return value(); }
127  static const uint64_t static_value1 = 0x4d6a180abc9be191ULL;
128  static const uint64_t static_value2 = 0xb96a7eda6c8a233dULL;
129 };
130 
131 template<class ContainerAllocator>
132 struct DataType< ::std_msgs::UInt32MultiArray_<ContainerAllocator> >
133 {
134  static const char* value()
135  {
136  return "std_msgs/UInt32MultiArray";
137  }
138 
139  static const char* value(const ::std_msgs::UInt32MultiArray_<ContainerAllocator>&) { return value(); }
140 };
141 
142 template<class ContainerAllocator>
143 struct Definition< ::std_msgs::UInt32MultiArray_<ContainerAllocator> >
144 {
145  static const char* value()
146  {
147  return "# Please look at the MultiArrayLayout message definition for\n\
148 # documentation on all multiarrays.\n\
149 \n\
150 MultiArrayLayout layout # specification of data layout\n\
151 uint32[] data # array of data\n\
152 \n\
153 \n\
154 ================================================================================\n\
155 MSG: std_msgs/MultiArrayLayout\n\
156 # The multiarray declares a generic multi-dimensional array of a\n\
157 # particular data type. Dimensions are ordered from outer most\n\
158 # to inner most.\n\
159 \n\
160 MultiArrayDimension[] dim # Array of dimension properties\n\
161 uint32 data_offset # padding elements at front of data\n\
162 \n\
163 # Accessors should ALWAYS be written in terms of dimension stride\n\
164 # and specified outer-most dimension first.\n\
165 # \n\
166 # multiarray(i,j,k) = data[data_offset + dim_stride[1]*i + dim_stride[2]*j + k]\n\
167 #\n\
168 # A standard, 3-channel 640x480 image with interleaved color channels\n\
169 # would be specified as:\n\
170 #\n\
171 # dim[0].label = \"height\"\n\
172 # dim[0].size = 480\n\
173 # dim[0].stride = 3*640*480 = 921600 (note dim[0] stride is just size of image)\n\
174 # dim[1].label = \"width\"\n\
175 # dim[1].size = 640\n\
176 # dim[1].stride = 3*640 = 1920\n\
177 # dim[2].label = \"channel\"\n\
178 # dim[2].size = 3\n\
179 # dim[2].stride = 3\n\
180 #\n\
181 # multiarray(i,j,k) refers to the ith row, jth column, and kth channel.\n\
182 \n\
183 ================================================================================\n\
184 MSG: std_msgs/MultiArrayDimension\n\
185 string label # label of given dimension\n\
186 uint32 size # size of given dimension (in type units)\n\
187 uint32 stride # stride of given dimension\n\
188 ";
189  }
190 
191  static const char* value(const ::std_msgs::UInt32MultiArray_<ContainerAllocator>&) { return value(); }
192 };
193 
194 } // namespace message_traits
195 } // namespace roswrap
196 
197 namespace roswrap
198 {
199 namespace serialization
200 {
201 
202  template<class ContainerAllocator> struct Serializer< ::std_msgs::UInt32MultiArray_<ContainerAllocator> >
203  {
204  template<typename Stream, typename T> inline static void allInOne(Stream& stream, T m)
205  {
206  stream.next(m.layout);
207  stream.next(m.data);
208  }
209 
211  }; // struct UInt32MultiArray_
212 
213 } // namespace serialization
214 } // namespace roswrap
215 
216 namespace roswrap
217 {
218 namespace message_operations
219 {
220 
221 template<class ContainerAllocator>
222 struct Printer< ::std_msgs::UInt32MultiArray_<ContainerAllocator> >
223 {
224  template<typename Stream> static void stream(Stream& s, const std::string& indent, const ::std_msgs::UInt32MultiArray_<ContainerAllocator>& v)
225  {
226  s << indent << "layout: ";
227  s << std::endl;
229  s << indent << "data[]" << std::endl;
230  for (size_t i = 0; i < v.data.size(); ++i)
231  {
232  s << indent << " data[" << i << "]: ";
233  Printer<uint32_t>::stream(s, indent + " ", v.data[i]);
234  }
235  }
236 };
237 
238 } // namespace message_operations
239 } // namespace roswrap
240 
241 #endif // STD_MSGS_MESSAGE_UINT32MULTIARRAY_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
std_msgs::UInt32MultiArray_::UInt32MultiArray_
UInt32MultiArray_()
Definition: UInt32MultiArray.h:28
multiscan_pcap_player.indent
indent
Definition: multiscan_pcap_player.py:252
std_msgs::UInt32MultiArray_::_layout_type
::std_msgs::MultiArrayLayout_< ContainerAllocator > _layout_type
Definition: UInt32MultiArray.h:40
roswrap::serialization::Serializer
Templated serialization class. Default implementation provides backwards compatibility with old messa...
Definition: serialization.h:120
roswrap::message_traits::MD5Sum< ::std_msgs::UInt32MultiArray_< ContainerAllocator > >::value
static const char * value()
Definition: UInt32MultiArray.h:121
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::Definition< ::std_msgs::UInt32MultiArray_< ContainerAllocator > >::value
static const char * value()
Definition: UInt32MultiArray.h:145
roswrap::message_operations::Printer< ::std_msgs::UInt32MultiArray_< ContainerAllocator > >::stream
static void stream(Stream &s, const std::string &indent, const ::std_msgs::UInt32MultiArray_< ContainerAllocator > &v)
Definition: UInt32MultiArray.h:224
const
#define const
Definition: getopt.c:38
s
XmlRpcServer s
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::DataType< ::std_msgs::UInt32MultiArray_< ContainerAllocator > >::value
static const char * value()
Definition: UInt32MultiArray.h:134
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
roswrap::message_traits::MD5Sum< ::std_msgs::UInt32MultiArray_< ContainerAllocator > >::value
static const char * value(const ::std_msgs::UInt32MultiArray_< ContainerAllocator > &)
Definition: UInt32MultiArray.h:126
roswrap::serialization::Serializer< ::std_msgs::UInt32MultiArray_< ContainerAllocator > >::allInOne
static void allInOne(Stream &stream, T m)
Definition: UInt32MultiArray.h:204
roswrap::message_traits::DataType
Specialize to provide the datatype for a message.
Definition: message_traits.h:135
roswrap::message_traits::Definition< ::std_msgs::UInt32MultiArray_< ContainerAllocator > >::value
static const char * value(const ::std_msgs::UInt32MultiArray_< ContainerAllocator > &)
Definition: UInt32MultiArray.h:191
roswrap::message_traits::Definition
Specialize to provide the definition for a message.
Definition: message_traits.h:152
std_msgs::UInt32MultiArray_::data
_data_type data
Definition: UInt32MultiArray.h:44
std_msgs::UInt32MultiArray_::Ptr
std::shared_ptr< ::std_msgs::UInt32MultiArray_< ContainerAllocator > > Ptr
Definition: UInt32MultiArray.h:49
std_msgs
roswrap::message_traits::DataType< ::std_msgs::UInt32MultiArray_< ContainerAllocator > >::value
static const char * value(const ::std_msgs::UInt32MultiArray_< ContainerAllocator > &)
Definition: UInt32MultiArray.h:139
std_msgs::UInt32MultiArray_::Type
UInt32MultiArray_< ContainerAllocator > Type
Definition: UInt32MultiArray.h:26
MultiArrayLayout.h
std_msgs::MultiArrayLayout_
Definition: MultiArrayLayout.h:24
std_msgs::UInt32MultiArrayConstPtr
std::shared_ptr< ::std_msgs::UInt32MultiArray const > UInt32MultiArrayConstPtr
Definition: UInt32MultiArray.h:57
roswrap
Definition: param_modi.cpp:41
roswrap::message_operations::Printer
Definition: message_operations.h:40
std_msgs::UInt32MultiArray_::UInt32MultiArray_
UInt32MultiArray_(const ContainerAllocator &_alloc)
Definition: UInt32MultiArray.h:32
std_msgs::UInt32MultiArray_
Definition: UInt32MultiArray.h:24
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
std_msgs::UInt32MultiArray_::_data_type
std::vector< uint32_t, typename ContainerAllocator::template rebind< uint32_t >::other > _data_type
Definition: UInt32MultiArray.h:43
roswrap::message_traits::IsMessage
Am I message or not.
Definition: message_traits.h:112
std_msgs::UInt32MultiArray_::layout
_layout_type layout
Definition: UInt32MultiArray.h:41
sick_scan_base.h
roswrap::serialization::Stream
Stream base-class, provides common functionality for IStream and OStream.
Definition: serialization.h:705
std_msgs::operator<<
std::ostream & operator<<(std::ostream &s, const ::std_msgs::Bool_< ContainerAllocator > &v)
Definition: Bool.h:58
std_msgs::UInt32MultiArray
::std_msgs::UInt32MultiArray_< std::allocator< void > > UInt32MultiArray
Definition: UInt32MultiArray.h:54
std_msgs::UInt32MultiArray_::ConstPtr
std::shared_ptr< ::std_msgs::UInt32MultiArray_< ContainerAllocator > const > ConstPtr
Definition: UInt32MultiArray.h:50
std_msgs::UInt32MultiArrayPtr
std::shared_ptr< ::std_msgs::UInt32MultiArray > UInt32MultiArrayPtr
Definition: UInt32MultiArray.h:56


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