00001
00002 #ifndef ARM_NAVIGATION_MSGS_MESSAGE_LINKPADDING_H
00003 #define ARM_NAVIGATION_MSGS_MESSAGE_LINKPADDING_H
00004 #include <string>
00005 #include <vector>
00006 #include <map>
00007 #include <ostream>
00008 #include "ros/serialization.h"
00009 #include "ros/builtin_message_traits.h"
00010 #include "ros/message_operations.h"
00011 #include "ros/time.h"
00012
00013 #include "ros/macros.h"
00014
00015 #include "ros/assert.h"
00016
00017
00018 namespace arm_navigation_msgs
00019 {
00020 template <class ContainerAllocator>
00021 struct LinkPadding_ {
00022 typedef LinkPadding_<ContainerAllocator> Type;
00023
00024 LinkPadding_()
00025 : link_name()
00026 , padding(0.0)
00027 {
00028 }
00029
00030 LinkPadding_(const ContainerAllocator& _alloc)
00031 : link_name(_alloc)
00032 , padding(0.0)
00033 {
00034 }
00035
00036 typedef std::basic_string<char, std::char_traits<char>, typename ContainerAllocator::template rebind<char>::other > _link_name_type;
00037 std::basic_string<char, std::char_traits<char>, typename ContainerAllocator::template rebind<char>::other > link_name;
00038
00039 typedef double _padding_type;
00040 double padding;
00041
00042
00043 private:
00044 static const char* __s_getDataType_() { return "arm_navigation_msgs/LinkPadding"; }
00045 public:
00046 ROS_DEPRECATED static const std::string __s_getDataType() { return __s_getDataType_(); }
00047
00048 ROS_DEPRECATED const std::string __getDataType() const { return __s_getDataType_(); }
00049
00050 private:
00051 static const char* __s_getMD5Sum_() { return "b3ea75670df55c696fedee97774d5947"; }
00052 public:
00053 ROS_DEPRECATED static const std::string __s_getMD5Sum() { return __s_getMD5Sum_(); }
00054
00055 ROS_DEPRECATED const std::string __getMD5Sum() const { return __s_getMD5Sum_(); }
00056
00057 private:
00058 static const char* __s_getMessageDefinition_() { return "#name for the link\n\
00059 string link_name\n\
00060 \n\
00061 # padding to apply to the link\n\
00062 float64 padding\n\
00063 \n\
00064 "; }
00065 public:
00066 ROS_DEPRECATED static const std::string __s_getMessageDefinition() { return __s_getMessageDefinition_(); }
00067
00068 ROS_DEPRECATED const std::string __getMessageDefinition() const { return __s_getMessageDefinition_(); }
00069
00070 ROS_DEPRECATED virtual uint8_t *serialize(uint8_t *write_ptr, uint32_t seq) const
00071 {
00072 ros::serialization::OStream stream(write_ptr, 1000000000);
00073 ros::serialization::serialize(stream, link_name);
00074 ros::serialization::serialize(stream, padding);
00075 return stream.getData();
00076 }
00077
00078 ROS_DEPRECATED virtual uint8_t *deserialize(uint8_t *read_ptr)
00079 {
00080 ros::serialization::IStream stream(read_ptr, 1000000000);
00081 ros::serialization::deserialize(stream, link_name);
00082 ros::serialization::deserialize(stream, padding);
00083 return stream.getData();
00084 }
00085
00086 ROS_DEPRECATED virtual uint32_t serializationLength() const
00087 {
00088 uint32_t size = 0;
00089 size += ros::serialization::serializationLength(link_name);
00090 size += ros::serialization::serializationLength(padding);
00091 return size;
00092 }
00093
00094 typedef boost::shared_ptr< ::arm_navigation_msgs::LinkPadding_<ContainerAllocator> > Ptr;
00095 typedef boost::shared_ptr< ::arm_navigation_msgs::LinkPadding_<ContainerAllocator> const> ConstPtr;
00096 boost::shared_ptr<std::map<std::string, std::string> > __connection_header;
00097 };
00098 typedef ::arm_navigation_msgs::LinkPadding_<std::allocator<void> > LinkPadding;
00099
00100 typedef boost::shared_ptr< ::arm_navigation_msgs::LinkPadding> LinkPaddingPtr;
00101 typedef boost::shared_ptr< ::arm_navigation_msgs::LinkPadding const> LinkPaddingConstPtr;
00102
00103
00104 template<typename ContainerAllocator>
00105 std::ostream& operator<<(std::ostream& s, const ::arm_navigation_msgs::LinkPadding_<ContainerAllocator> & v)
00106 {
00107 ros::message_operations::Printer< ::arm_navigation_msgs::LinkPadding_<ContainerAllocator> >::stream(s, "", v);
00108 return s;}
00109
00110 }
00111
00112 namespace ros
00113 {
00114 namespace message_traits
00115 {
00116 template<class ContainerAllocator> struct IsMessage< ::arm_navigation_msgs::LinkPadding_<ContainerAllocator> > : public TrueType {};
00117 template<class ContainerAllocator> struct IsMessage< ::arm_navigation_msgs::LinkPadding_<ContainerAllocator> const> : public TrueType {};
00118 template<class ContainerAllocator>
00119 struct MD5Sum< ::arm_navigation_msgs::LinkPadding_<ContainerAllocator> > {
00120 static const char* value()
00121 {
00122 return "b3ea75670df55c696fedee97774d5947";
00123 }
00124
00125 static const char* value(const ::arm_navigation_msgs::LinkPadding_<ContainerAllocator> &) { return value(); }
00126 static const uint64_t static_value1 = 0xb3ea75670df55c69ULL;
00127 static const uint64_t static_value2 = 0x6fedee97774d5947ULL;
00128 };
00129
00130 template<class ContainerAllocator>
00131 struct DataType< ::arm_navigation_msgs::LinkPadding_<ContainerAllocator> > {
00132 static const char* value()
00133 {
00134 return "arm_navigation_msgs/LinkPadding";
00135 }
00136
00137 static const char* value(const ::arm_navigation_msgs::LinkPadding_<ContainerAllocator> &) { return value(); }
00138 };
00139
00140 template<class ContainerAllocator>
00141 struct Definition< ::arm_navigation_msgs::LinkPadding_<ContainerAllocator> > {
00142 static const char* value()
00143 {
00144 return "#name for the link\n\
00145 string link_name\n\
00146 \n\
00147 # padding to apply to the link\n\
00148 float64 padding\n\
00149 \n\
00150 ";
00151 }
00152
00153 static const char* value(const ::arm_navigation_msgs::LinkPadding_<ContainerAllocator> &) { return value(); }
00154 };
00155
00156 }
00157 }
00158
00159 namespace ros
00160 {
00161 namespace serialization
00162 {
00163
00164 template<class ContainerAllocator> struct Serializer< ::arm_navigation_msgs::LinkPadding_<ContainerAllocator> >
00165 {
00166 template<typename Stream, typename T> inline static void allInOne(Stream& stream, T m)
00167 {
00168 stream.next(m.link_name);
00169 stream.next(m.padding);
00170 }
00171
00172 ROS_DECLARE_ALLINONE_SERIALIZER;
00173 };
00174 }
00175 }
00176
00177 namespace ros
00178 {
00179 namespace message_operations
00180 {
00181
00182 template<class ContainerAllocator>
00183 struct Printer< ::arm_navigation_msgs::LinkPadding_<ContainerAllocator> >
00184 {
00185 template<typename Stream> static void stream(Stream& s, const std::string& indent, const ::arm_navigation_msgs::LinkPadding_<ContainerAllocator> & v)
00186 {
00187 s << indent << "link_name: ";
00188 Printer<std::basic_string<char, std::char_traits<char>, typename ContainerAllocator::template rebind<char>::other > >::stream(s, indent + " ", v.link_name);
00189 s << indent << "padding: ";
00190 Printer<double>::stream(s, indent + " ", v.padding);
00191 }
00192 };
00193
00194
00195 }
00196 }
00197
00198 #endif // ARM_NAVIGATION_MSGS_MESSAGE_LINKPADDING_H
00199