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