ParamDescription.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 dynamic_reconfigure/ParamDescription.msg
3 // DO NOT EDIT!
4 
5 
6 #ifndef DYNAMIC_RECONFIGURE_MESSAGE_PARAMDESCRIPTION_H
7 #define DYNAMIC_RECONFIGURE_MESSAGE_PARAMDESCRIPTION_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 
20 namespace dynamic_reconfigure
21 {
22 template <class ContainerAllocator>
24 {
26 
28  : name()
29  , type()
30  , level(0)
31  , description()
32  , edit_method() {
33  }
34  ParamDescription_(const ContainerAllocator& _alloc)
35  : name(_alloc)
36  , type(_alloc)
37  , level(0)
38  , description(_alloc)
39  , edit_method(_alloc) {
40  (void)_alloc;
41  }
42 
43 
44 
45  typedef std::basic_string<char, std::char_traits<char>, typename ContainerAllocator::template rebind<char>::other > _name_type;
47 
48  typedef std::basic_string<char, std::char_traits<char>, typename ContainerAllocator::template rebind<char>::other > _type_type;
50 
51  typedef uint32_t _level_type;
53 
54  typedef std::basic_string<char, std::char_traits<char>, typename ContainerAllocator::template rebind<char>::other > _description_type;
56 
57  typedef std::basic_string<char, std::char_traits<char>, typename ContainerAllocator::template rebind<char>::other > _edit_method_type;
59 
60 
61 
62 
63  typedef std::shared_ptr< ::dynamic_reconfigure::ParamDescription_<ContainerAllocator> > Ptr;
64  typedef std::shared_ptr< ::dynamic_reconfigure::ParamDescription_<ContainerAllocator> const> ConstPtr;
65 
66 }; // struct ParamDescription_
67 
68 typedef ::dynamic_reconfigure::ParamDescription_<std::allocator<void> > ParamDescription;
69 
70 typedef std::shared_ptr< ::dynamic_reconfigure::ParamDescription > ParamDescriptionPtr;
71 typedef std::shared_ptr< ::dynamic_reconfigure::ParamDescription const> ParamDescriptionConstPtr;
72 
73 // constants requiring out of line definition
74 
75 
76 
77 template<typename ContainerAllocator>
78 std::ostream& operator<<(std::ostream& s, const ::dynamic_reconfigure::ParamDescription_<ContainerAllocator> & v)
79 {
81 return s;
82 }
83 
84 } // namespace dynamic_reconfigure
85 
86 namespace roswrap
87 {
88 namespace message_traits
89 {
90 
91 
92 
93 // BOOLTRAITS {'IsFixedSize': False, 'IsMessage': True, 'HasHeader': False}
94 // {'dynamic_reconfigure': ['/tmp/binarydeb/ros-kinetic-dynamic-reconfigure-1.5.48/msg'], 'std_msgs': ['/opt/ros/kinetic/share/std_msgs/cmake/../msg']}
95 
96 // !!!!!!!!!!! ['__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']
97 
98 
99 
100 
101 template <class ContainerAllocator>
103  : FalseType
104  { };
105 
106 template <class ContainerAllocator>
108  : FalseType
109  { };
110 
111 template <class ContainerAllocator>
112 struct IsMessage< ::dynamic_reconfigure::ParamDescription_<ContainerAllocator> >
113  : TrueType
114  { };
115 
116 template <class ContainerAllocator>
118  : TrueType
119  { };
120 
121 template <class ContainerAllocator>
122 struct HasHeader< ::dynamic_reconfigure::ParamDescription_<ContainerAllocator> >
123  : FalseType
124  { };
125 
126 template <class ContainerAllocator>
128  : FalseType
129  { };
130 
131 
132 template<class ContainerAllocator>
133 struct MD5Sum< ::dynamic_reconfigure::ParamDescription_<ContainerAllocator> >
134 {
135  static const char* value()
136  {
137  return "7434fcb9348c13054e0c3b267c8cb34d";
138  }
139 
140  static const char* value(const ::dynamic_reconfigure::ParamDescription_<ContainerAllocator>&) { return value(); }
141  static const uint64_t static_value1 = 0x7434fcb9348c1305ULL;
142  static const uint64_t static_value2 = 0x4e0c3b267c8cb34dULL;
143 };
144 
145 template<class ContainerAllocator>
146 struct DataType< ::dynamic_reconfigure::ParamDescription_<ContainerAllocator> >
147 {
148  static const char* value()
149  {
150  return "dynamic_reconfigure/ParamDescription";
151  }
152 
153  static const char* value(const ::dynamic_reconfigure::ParamDescription_<ContainerAllocator>&) { return value(); }
154 };
155 
156 template<class ContainerAllocator>
157 struct Definition< ::dynamic_reconfigure::ParamDescription_<ContainerAllocator> >
158 {
159  static const char* value()
160  {
161  return "string name\n\
162 string type\n\
163 uint32 level\n\
164 string description\n\
165 string edit_method\n\
166 ";
167  }
168 
169  static const char* value(const ::dynamic_reconfigure::ParamDescription_<ContainerAllocator>&) { return value(); }
170 };
171 
172 } // namespace message_traits
173 } // namespace roswrap
174 
175 namespace roswrap
176 {
177 namespace serialization
178 {
179 
180  template<class ContainerAllocator> struct Serializer< ::dynamic_reconfigure::ParamDescription_<ContainerAllocator> >
181  {
182  template<typename Stream, typename T> inline static void allInOne(Stream& stream, T m)
183  {
184  stream.next(m.name);
185  stream.next(m.type);
186  stream.next(m.level);
187  stream.next(m.description);
188  stream.next(m.edit_method);
189  }
190 
192  }; // struct ParamDescription_
193 
194 } // namespace serialization
195 } // namespace roswrap
196 
197 namespace roswrap
198 {
199 namespace message_operations
200 {
201 
202 template<class ContainerAllocator>
203 struct Printer< ::dynamic_reconfigure::ParamDescription_<ContainerAllocator> >
204 {
205  template<typename Stream> static void stream(Stream& s, const std::string& indent, const ::dynamic_reconfigure::ParamDescription_<ContainerAllocator>& v)
206  {
207  s << indent << "name: ";
208  Printer<std::basic_string<char, std::char_traits<char>, typename ContainerAllocator::template rebind<char>::other > >::stream(s, indent + " ", v.name);
209  s << indent << "type: ";
210  Printer<std::basic_string<char, std::char_traits<char>, typename ContainerAllocator::template rebind<char>::other > >::stream(s, indent + " ", v.type);
211  s << indent << "level: ";
212  Printer<uint32_t>::stream(s, indent + " ", v.level);
213  s << indent << "description: ";
214  Printer<std::basic_string<char, std::char_traits<char>, typename ContainerAllocator::template rebind<char>::other > >::stream(s, indent + " ", v.description);
215  s << indent << "edit_method: ";
216  Printer<std::basic_string<char, std::char_traits<char>, typename ContainerAllocator::template rebind<char>::other > >::stream(s, indent + " ", v.edit_method);
217  }
218 };
219 
220 } // namespace message_operations
221 } // namespace roswrap
222 
223 #endif // DYNAMIC_RECONFIGURE_MESSAGE_PARAMDESCRIPTION_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
dynamic_reconfigure::ParamDescription_::name
_name_type name
Definition: ParamDescription.h:46
roswrap::message_traits::MD5Sum< ::dynamic_reconfigure::ParamDescription_< ContainerAllocator > >::value
static const char * value(const ::dynamic_reconfigure::ParamDescription_< ContainerAllocator > &)
Definition: ParamDescription.h:140
multiscan_pcap_player.indent
indent
Definition: multiscan_pcap_player.py:252
roswrap::serialization::Serializer< ::dynamic_reconfigure::ParamDescription_< ContainerAllocator > >::allInOne
static void allInOne(Stream &stream, T m)
Definition: ParamDescription.h:182
roswrap::serialization::Serializer
Templated serialization class. Default implementation provides backwards compatibility with old messa...
Definition: serialization.h:120
dynamic_reconfigure::ParamDescription_::type
_type_type type
Definition: ParamDescription.h:49
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::MD5Sum< ::dynamic_reconfigure::ParamDescription_< ContainerAllocator > >::value
static const char * value()
Definition: ParamDescription.h:135
dynamic_reconfigure::ParamDescription
::dynamic_reconfigure::ParamDescription_< std::allocator< void > > ParamDescription
Definition: ParamDescription.h:68
dynamic_reconfigure::ParamDescription_::_level_type
uint32_t _level_type
Definition: ParamDescription.h:51
const
#define const
Definition: getopt.c:38
s
XmlRpcServer s
dynamic_reconfigure::ParamDescription_::_type_type
std::basic_string< char, std::char_traits< char >, typename ContainerAllocator::template rebind< char >::other > _type_type
Definition: ParamDescription.h:48
dynamic_reconfigure::ParamDescription_::ConstPtr
std::shared_ptr< ::dynamic_reconfigure::ParamDescription_< ContainerAllocator > const > ConstPtr
Definition: ParamDescription.h:64
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
dynamic_reconfigure::ParamDescription_
Definition: ParamDescription.h:23
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
dynamic_reconfigure::ParamDescription_::Ptr
std::shared_ptr< ::dynamic_reconfigure::ParamDescription_< ContainerAllocator > > Ptr
Definition: ParamDescription.h:63
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
dynamic_reconfigure::ParamDescription_::_name_type
std::basic_string< char, std::char_traits< char >, typename ContainerAllocator::template rebind< char >::other > _name_type
Definition: ParamDescription.h:45
dynamic_reconfigure::ParamDescriptionPtr
std::shared_ptr< ::dynamic_reconfigure::ParamDescription > ParamDescriptionPtr
Definition: ParamDescription.h:70
dynamic_reconfigure::ParamDescription_::Type
ParamDescription_< ContainerAllocator > Type
Definition: ParamDescription.h:25
roswrap::message_traits::DataType< ::dynamic_reconfigure::ParamDescription_< ContainerAllocator > >::value
static const char * value(const ::dynamic_reconfigure::ParamDescription_< ContainerAllocator > &)
Definition: ParamDescription.h:153
roswrap::message_traits::DataType< ::dynamic_reconfigure::ParamDescription_< ContainerAllocator > >::value
static const char * value()
Definition: ParamDescription.h:148
dynamic_reconfigure::ParamDescription_::_edit_method_type
std::basic_string< char, std::char_traits< char >, typename ContainerAllocator::template rebind< char >::other > _edit_method_type
Definition: ParamDescription.h:57
roswrap
Definition: param_modi.cpp:41
dynamic_reconfigure::ParamDescription_::ParamDescription_
ParamDescription_(const ContainerAllocator &_alloc)
Definition: ParamDescription.h:34
roswrap::message_operations::Printer
Definition: message_operations.h:40
roswrap::message_traits::Definition< ::dynamic_reconfigure::ParamDescription_< ContainerAllocator > >::value
static const char * value(const ::dynamic_reconfigure::ParamDescription_< ContainerAllocator > &)
Definition: ParamDescription.h:169
dynamic_reconfigure
Definition: BoolParameter.h:20
dynamic_reconfigure::ParamDescription_::ParamDescription_
ParamDescription_()
Definition: ParamDescription.h:27
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
roswrap::message_traits::IsMessage
Am I message or not.
Definition: message_traits.h:112
dynamic_reconfigure::ParamDescription_::level
_level_type level
Definition: ParamDescription.h:52
roswrap::message_operations::Printer< ::dynamic_reconfigure::ParamDescription_< ContainerAllocator > >::stream
static void stream(Stream &s, const std::string &indent, const ::dynamic_reconfigure::ParamDescription_< ContainerAllocator > &v)
Definition: ParamDescription.h:205
dynamic_reconfigure::ParamDescriptionConstPtr
std::shared_ptr< ::dynamic_reconfigure::ParamDescription const > ParamDescriptionConstPtr
Definition: ParamDescription.h:71
sick_scan_base.h
roswrap::serialization::Stream
Stream base-class, provides common functionality for IStream and OStream.
Definition: serialization.h:705
dynamic_reconfigure::ParamDescription_::_description_type
std::basic_string< char, std::char_traits< char >, typename ContainerAllocator::template rebind< char >::other > _description_type
Definition: ParamDescription.h:54
dynamic_reconfigure::operator<<
std::ostream & operator<<(std::ostream &s, const ::dynamic_reconfigure::BoolParameter_< ContainerAllocator > &v)
Definition: BoolParameter.h:63
roswrap::message_traits::Definition< ::dynamic_reconfigure::ParamDescription_< ContainerAllocator > >::value
static const char * value()
Definition: ParamDescription.h:159
dynamic_reconfigure::ParamDescription_::description
_description_type description
Definition: ParamDescription.h:55
dynamic_reconfigure::ParamDescription_::edit_method
_edit_method_type edit_method
Definition: ParamDescription.h:58


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