Go to the documentation of this file.00001
00002 #ifndef OBJECT_MANIPULATION_MSGS_MESSAGE_CARTESIANGAINS_H
00003 #define OBJECT_MANIPULATION_MSGS_MESSAGE_CARTESIANGAINS_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 #include "std_msgs/Header.h"
00018
00019 namespace object_manipulation_msgs
00020 {
00021 template <class ContainerAllocator>
00022 struct CartesianGains_ {
00023 typedef CartesianGains_<ContainerAllocator> Type;
00024
00025 CartesianGains_()
00026 : header()
00027 , gains()
00028 , fixed_frame()
00029 {
00030 }
00031
00032 CartesianGains_(const ContainerAllocator& _alloc)
00033 : header(_alloc)
00034 , gains(_alloc)
00035 , fixed_frame(_alloc)
00036 {
00037 }
00038
00039 typedef ::std_msgs::Header_<ContainerAllocator> _header_type;
00040 ::std_msgs::Header_<ContainerAllocator> header;
00041
00042 typedef std::vector<double, typename ContainerAllocator::template rebind<double>::other > _gains_type;
00043 std::vector<double, typename ContainerAllocator::template rebind<double>::other > gains;
00044
00045 typedef std::vector<double, typename ContainerAllocator::template rebind<double>::other > _fixed_frame_type;
00046 std::vector<double, typename ContainerAllocator::template rebind<double>::other > fixed_frame;
00047
00048
00049 typedef boost::shared_ptr< ::object_manipulation_msgs::CartesianGains_<ContainerAllocator> > Ptr;
00050 typedef boost::shared_ptr< ::object_manipulation_msgs::CartesianGains_<ContainerAllocator> const> ConstPtr;
00051 boost::shared_ptr<std::map<std::string, std::string> > __connection_header;
00052 };
00053 typedef ::object_manipulation_msgs::CartesianGains_<std::allocator<void> > CartesianGains;
00054
00055 typedef boost::shared_ptr< ::object_manipulation_msgs::CartesianGains> CartesianGainsPtr;
00056 typedef boost::shared_ptr< ::object_manipulation_msgs::CartesianGains const> CartesianGainsConstPtr;
00057
00058
00059 template<typename ContainerAllocator>
00060 std::ostream& operator<<(std::ostream& s, const ::object_manipulation_msgs::CartesianGains_<ContainerAllocator> & v)
00061 {
00062 ros::message_operations::Printer< ::object_manipulation_msgs::CartesianGains_<ContainerAllocator> >::stream(s, "", v);
00063 return s;}
00064
00065 }
00066
00067 namespace ros
00068 {
00069 namespace message_traits
00070 {
00071 template<class ContainerAllocator> struct IsMessage< ::object_manipulation_msgs::CartesianGains_<ContainerAllocator> > : public TrueType {};
00072 template<class ContainerAllocator> struct IsMessage< ::object_manipulation_msgs::CartesianGains_<ContainerAllocator> const> : public TrueType {};
00073 template<class ContainerAllocator>
00074 struct MD5Sum< ::object_manipulation_msgs::CartesianGains_<ContainerAllocator> > {
00075 static const char* value()
00076 {
00077 return "ab347f046ca5736a156ec424cbb63635";
00078 }
00079
00080 static const char* value(const ::object_manipulation_msgs::CartesianGains_<ContainerAllocator> &) { return value(); }
00081 static const uint64_t static_value1 = 0xab347f046ca5736aULL;
00082 static const uint64_t static_value2 = 0x156ec424cbb63635ULL;
00083 };
00084
00085 template<class ContainerAllocator>
00086 struct DataType< ::object_manipulation_msgs::CartesianGains_<ContainerAllocator> > {
00087 static const char* value()
00088 {
00089 return "object_manipulation_msgs/CartesianGains";
00090 }
00091
00092 static const char* value(const ::object_manipulation_msgs::CartesianGains_<ContainerAllocator> &) { return value(); }
00093 };
00094
00095 template<class ContainerAllocator>
00096 struct Definition< ::object_manipulation_msgs::CartesianGains_<ContainerAllocator> > {
00097 static const char* value()
00098 {
00099 return "Header header\n\
00100 \n\
00101 float64[] gains\n\
00102 float64[] fixed_frame\n\
00103 \n\
00104 ================================================================================\n\
00105 MSG: std_msgs/Header\n\
00106 # Standard metadata for higher-level stamped data types.\n\
00107 # This is generally used to communicate timestamped data \n\
00108 # in a particular coordinate frame.\n\
00109 # \n\
00110 # sequence ID: consecutively increasing ID \n\
00111 uint32 seq\n\
00112 #Two-integer timestamp that is expressed as:\n\
00113 # * stamp.secs: seconds (stamp_secs) since epoch\n\
00114 # * stamp.nsecs: nanoseconds since stamp_secs\n\
00115 # time-handling sugar is provided by the client library\n\
00116 time stamp\n\
00117 #Frame this data is associated with\n\
00118 # 0: no frame\n\
00119 # 1: global frame\n\
00120 string frame_id\n\
00121 \n\
00122 ";
00123 }
00124
00125 static const char* value(const ::object_manipulation_msgs::CartesianGains_<ContainerAllocator> &) { return value(); }
00126 };
00127
00128 template<class ContainerAllocator> struct HasHeader< ::object_manipulation_msgs::CartesianGains_<ContainerAllocator> > : public TrueType {};
00129 template<class ContainerAllocator> struct HasHeader< const ::object_manipulation_msgs::CartesianGains_<ContainerAllocator> > : public TrueType {};
00130 }
00131 }
00132
00133 namespace ros
00134 {
00135 namespace serialization
00136 {
00137
00138 template<class ContainerAllocator> struct Serializer< ::object_manipulation_msgs::CartesianGains_<ContainerAllocator> >
00139 {
00140 template<typename Stream, typename T> inline static void allInOne(Stream& stream, T m)
00141 {
00142 stream.next(m.header);
00143 stream.next(m.gains);
00144 stream.next(m.fixed_frame);
00145 }
00146
00147 ROS_DECLARE_ALLINONE_SERIALIZER;
00148 };
00149 }
00150 }
00151
00152 namespace ros
00153 {
00154 namespace message_operations
00155 {
00156
00157 template<class ContainerAllocator>
00158 struct Printer< ::object_manipulation_msgs::CartesianGains_<ContainerAllocator> >
00159 {
00160 template<typename Stream> static void stream(Stream& s, const std::string& indent, const ::object_manipulation_msgs::CartesianGains_<ContainerAllocator> & v)
00161 {
00162 s << indent << "header: ";
00163 s << std::endl;
00164 Printer< ::std_msgs::Header_<ContainerAllocator> >::stream(s, indent + " ", v.header);
00165 s << indent << "gains[]" << std::endl;
00166 for (size_t i = 0; i < v.gains.size(); ++i)
00167 {
00168 s << indent << " gains[" << i << "]: ";
00169 Printer<double>::stream(s, indent + " ", v.gains[i]);
00170 }
00171 s << indent << "fixed_frame[]" << std::endl;
00172 for (size_t i = 0; i < v.fixed_frame.size(); ++i)
00173 {
00174 s << indent << " fixed_frame[" << i << "]: ";
00175 Printer<double>::stream(s, indent + " ", v.fixed_frame[i]);
00176 }
00177 }
00178 };
00179
00180
00181 }
00182 }
00183
00184 #endif // OBJECT_MANIPULATION_MSGS_MESSAGE_CARTESIANGAINS_H
00185