00001
00002 #ifndef PR2_CONTROLLERS_MSGS_MESSAGE_JOINTTRAJECTORYACTIONGOAL_H
00003 #define PR2_CONTROLLERS_MSGS_MESSAGE_JOINTTRAJECTORYACTIONGOAL_H
00004 #include <string>
00005 #include <vector>
00006 #include <ostream>
00007 #include "ros/serialization.h"
00008 #include "ros/builtin_message_traits.h"
00009 #include "ros/message_operations.h"
00010 #include "ros/message.h"
00011 #include "ros/time.h"
00012
00013 #include "std_msgs/Header.h"
00014 #include "actionlib_msgs/GoalID.h"
00015 #include "pr2_controllers_msgs/JointTrajectoryGoal.h"
00016
00017 namespace pr2_controllers_msgs
00018 {
00019 template <class ContainerAllocator>
00020 struct JointTrajectoryActionGoal_ : public ros::Message
00021 {
00022 typedef JointTrajectoryActionGoal_<ContainerAllocator> Type;
00023
00024 JointTrajectoryActionGoal_()
00025 : header()
00026 , goal_id()
00027 , goal()
00028 {
00029 }
00030
00031 JointTrajectoryActionGoal_(const ContainerAllocator& _alloc)
00032 : header(_alloc)
00033 , goal_id(_alloc)
00034 , goal(_alloc)
00035 {
00036 }
00037
00038 typedef ::std_msgs::Header_<ContainerAllocator> _header_type;
00039 ::std_msgs::Header_<ContainerAllocator> header;
00040
00041 typedef ::actionlib_msgs::GoalID_<ContainerAllocator> _goal_id_type;
00042 ::actionlib_msgs::GoalID_<ContainerAllocator> goal_id;
00043
00044 typedef ::pr2_controllers_msgs::JointTrajectoryGoal_<ContainerAllocator> _goal_type;
00045 ::pr2_controllers_msgs::JointTrajectoryGoal_<ContainerAllocator> goal;
00046
00047
00048 private:
00049 static const char* __s_getDataType_() { return "pr2_controllers_msgs/JointTrajectoryActionGoal"; }
00050 public:
00051 ROS_DEPRECATED static const std::string __s_getDataType() { return __s_getDataType_(); }
00052
00053 ROS_DEPRECATED const std::string __getDataType() const { return __s_getDataType_(); }
00054
00055 private:
00056 static const char* __s_getMD5Sum_() { return "aee77e81e3afb8d91af4939d603609d8"; }
00057 public:
00058 ROS_DEPRECATED static const std::string __s_getMD5Sum() { return __s_getMD5Sum_(); }
00059
00060 ROS_DEPRECATED const std::string __getMD5Sum() const { return __s_getMD5Sum_(); }
00061
00062 private:
00063 static const char* __s_getMessageDefinition_() { return "# ====== DO NOT MODIFY! AUTOGENERATED FROM AN ACTION DEFINITION ======\n\
00064 \n\
00065 Header header\n\
00066 actionlib_msgs/GoalID goal_id\n\
00067 JointTrajectoryGoal goal\n\
00068 \n\
00069 ================================================================================\n\
00070 MSG: std_msgs/Header\n\
00071 # Standard metadata for higher-level stamped data types.\n\
00072 # This is generally used to communicate timestamped data \n\
00073 # in a particular coordinate frame.\n\
00074 # \n\
00075 # sequence ID: consecutively increasing ID \n\
00076 uint32 seq\n\
00077 #Two-integer timestamp that is expressed as:\n\
00078 # * stamp.secs: seconds (stamp_secs) since epoch\n\
00079 # * stamp.nsecs: nanoseconds since stamp_secs\n\
00080 # time-handling sugar is provided by the client library\n\
00081 time stamp\n\
00082 #Frame this data is associated with\n\
00083 # 0: no frame\n\
00084 # 1: global frame\n\
00085 string frame_id\n\
00086 \n\
00087 ================================================================================\n\
00088 MSG: actionlib_msgs/GoalID\n\
00089 # The stamp should store the time at which this goal was requested.\n\
00090 # It is used by an action server when it tries to preempt all\n\
00091 # goals that were requested before a certain time\n\
00092 time stamp\n\
00093 \n\
00094 # The id provides a way to associate feedback and\n\
00095 # result message with specific goal requests. The id\n\
00096 # specified must be unique.\n\
00097 string id\n\
00098 \n\
00099 \n\
00100 ================================================================================\n\
00101 MSG: pr2_controllers_msgs/JointTrajectoryGoal\n\
00102 # ====== DO NOT MODIFY! AUTOGENERATED FROM AN ACTION DEFINITION ======\n\
00103 trajectory_msgs/JointTrajectory trajectory\n\
00104 \n\
00105 ================================================================================\n\
00106 MSG: trajectory_msgs/JointTrajectory\n\
00107 Header header\n\
00108 string[] joint_names\n\
00109 JointTrajectoryPoint[] points\n\
00110 ================================================================================\n\
00111 MSG: trajectory_msgs/JointTrajectoryPoint\n\
00112 float64[] positions\n\
00113 float64[] velocities\n\
00114 float64[] accelerations\n\
00115 duration time_from_start\n\
00116 "; }
00117 public:
00118 ROS_DEPRECATED static const std::string __s_getMessageDefinition() { return __s_getMessageDefinition_(); }
00119
00120 ROS_DEPRECATED const std::string __getMessageDefinition() const { return __s_getMessageDefinition_(); }
00121
00122 ROS_DEPRECATED virtual uint8_t *serialize(uint8_t *write_ptr, uint32_t seq) const
00123 {
00124 ros::serialization::OStream stream(write_ptr, 1000000000);
00125 ros::serialization::serialize(stream, header);
00126 ros::serialization::serialize(stream, goal_id);
00127 ros::serialization::serialize(stream, goal);
00128 return stream.getData();
00129 }
00130
00131 ROS_DEPRECATED virtual uint8_t *deserialize(uint8_t *read_ptr)
00132 {
00133 ros::serialization::IStream stream(read_ptr, 1000000000);
00134 ros::serialization::deserialize(stream, header);
00135 ros::serialization::deserialize(stream, goal_id);
00136 ros::serialization::deserialize(stream, goal);
00137 return stream.getData();
00138 }
00139
00140 ROS_DEPRECATED virtual uint32_t serializationLength() const
00141 {
00142 uint32_t size = 0;
00143 size += ros::serialization::serializationLength(header);
00144 size += ros::serialization::serializationLength(goal_id);
00145 size += ros::serialization::serializationLength(goal);
00146 return size;
00147 }
00148
00149 typedef boost::shared_ptr< ::pr2_controllers_msgs::JointTrajectoryActionGoal_<ContainerAllocator> > Ptr;
00150 typedef boost::shared_ptr< ::pr2_controllers_msgs::JointTrajectoryActionGoal_<ContainerAllocator> const> ConstPtr;
00151 };
00152 typedef ::pr2_controllers_msgs::JointTrajectoryActionGoal_<std::allocator<void> > JointTrajectoryActionGoal;
00153
00154 typedef boost::shared_ptr< ::pr2_controllers_msgs::JointTrajectoryActionGoal> JointTrajectoryActionGoalPtr;
00155 typedef boost::shared_ptr< ::pr2_controllers_msgs::JointTrajectoryActionGoal const> JointTrajectoryActionGoalConstPtr;
00156
00157
00158 template<typename ContainerAllocator>
00159 std::ostream& operator<<(std::ostream& s, const ::pr2_controllers_msgs::JointTrajectoryActionGoal_<ContainerAllocator> & v)
00160 {
00161 ros::message_operations::Printer< ::pr2_controllers_msgs::JointTrajectoryActionGoal_<ContainerAllocator> >::stream(s, "", v);
00162 return s;}
00163
00164 }
00165
00166 namespace ros
00167 {
00168 namespace message_traits
00169 {
00170 template<class ContainerAllocator>
00171 struct MD5Sum< ::pr2_controllers_msgs::JointTrajectoryActionGoal_<ContainerAllocator> > {
00172 static const char* value()
00173 {
00174 return "aee77e81e3afb8d91af4939d603609d8";
00175 }
00176
00177 static const char* value(const ::pr2_controllers_msgs::JointTrajectoryActionGoal_<ContainerAllocator> &) { return value(); }
00178 static const uint64_t static_value1 = 0xaee77e81e3afb8d9ULL;
00179 static const uint64_t static_value2 = 0x1af4939d603609d8ULL;
00180 };
00181
00182 template<class ContainerAllocator>
00183 struct DataType< ::pr2_controllers_msgs::JointTrajectoryActionGoal_<ContainerAllocator> > {
00184 static const char* value()
00185 {
00186 return "pr2_controllers_msgs/JointTrajectoryActionGoal";
00187 }
00188
00189 static const char* value(const ::pr2_controllers_msgs::JointTrajectoryActionGoal_<ContainerAllocator> &) { return value(); }
00190 };
00191
00192 template<class ContainerAllocator>
00193 struct Definition< ::pr2_controllers_msgs::JointTrajectoryActionGoal_<ContainerAllocator> > {
00194 static const char* value()
00195 {
00196 return "# ====== DO NOT MODIFY! AUTOGENERATED FROM AN ACTION DEFINITION ======\n\
00197 \n\
00198 Header header\n\
00199 actionlib_msgs/GoalID goal_id\n\
00200 JointTrajectoryGoal goal\n\
00201 \n\
00202 ================================================================================\n\
00203 MSG: std_msgs/Header\n\
00204 # Standard metadata for higher-level stamped data types.\n\
00205 # This is generally used to communicate timestamped data \n\
00206 # in a particular coordinate frame.\n\
00207 # \n\
00208 # sequence ID: consecutively increasing ID \n\
00209 uint32 seq\n\
00210 #Two-integer timestamp that is expressed as:\n\
00211 # * stamp.secs: seconds (stamp_secs) since epoch\n\
00212 # * stamp.nsecs: nanoseconds since stamp_secs\n\
00213 # time-handling sugar is provided by the client library\n\
00214 time stamp\n\
00215 #Frame this data is associated with\n\
00216 # 0: no frame\n\
00217 # 1: global frame\n\
00218 string frame_id\n\
00219 \n\
00220 ================================================================================\n\
00221 MSG: actionlib_msgs/GoalID\n\
00222 # The stamp should store the time at which this goal was requested.\n\
00223 # It is used by an action server when it tries to preempt all\n\
00224 # goals that were requested before a certain time\n\
00225 time stamp\n\
00226 \n\
00227 # The id provides a way to associate feedback and\n\
00228 # result message with specific goal requests. The id\n\
00229 # specified must be unique.\n\
00230 string id\n\
00231 \n\
00232 \n\
00233 ================================================================================\n\
00234 MSG: pr2_controllers_msgs/JointTrajectoryGoal\n\
00235 # ====== DO NOT MODIFY! AUTOGENERATED FROM AN ACTION DEFINITION ======\n\
00236 trajectory_msgs/JointTrajectory trajectory\n\
00237 \n\
00238 ================================================================================\n\
00239 MSG: trajectory_msgs/JointTrajectory\n\
00240 Header header\n\
00241 string[] joint_names\n\
00242 JointTrajectoryPoint[] points\n\
00243 ================================================================================\n\
00244 MSG: trajectory_msgs/JointTrajectoryPoint\n\
00245 float64[] positions\n\
00246 float64[] velocities\n\
00247 float64[] accelerations\n\
00248 duration time_from_start\n\
00249 ";
00250 }
00251
00252 static const char* value(const ::pr2_controllers_msgs::JointTrajectoryActionGoal_<ContainerAllocator> &) { return value(); }
00253 };
00254
00255 template<class ContainerAllocator> struct HasHeader< ::pr2_controllers_msgs::JointTrajectoryActionGoal_<ContainerAllocator> > : public TrueType {};
00256 template<class ContainerAllocator> struct HasHeader< const ::pr2_controllers_msgs::JointTrajectoryActionGoal_<ContainerAllocator> > : public TrueType {};
00257 }
00258 }
00259
00260 namespace ros
00261 {
00262 namespace serialization
00263 {
00264
00265 template<class ContainerAllocator> struct Serializer< ::pr2_controllers_msgs::JointTrajectoryActionGoal_<ContainerAllocator> >
00266 {
00267 template<typename Stream, typename T> inline static void allInOne(Stream& stream, T m)
00268 {
00269 stream.next(m.header);
00270 stream.next(m.goal_id);
00271 stream.next(m.goal);
00272 }
00273
00274 ROS_DECLARE_ALLINONE_SERIALIZER;
00275 };
00276 }
00277 }
00278
00279 namespace ros
00280 {
00281 namespace message_operations
00282 {
00283
00284 template<class ContainerAllocator>
00285 struct Printer< ::pr2_controllers_msgs::JointTrajectoryActionGoal_<ContainerAllocator> >
00286 {
00287 template<typename Stream> static void stream(Stream& s, const std::string& indent, const ::pr2_controllers_msgs::JointTrajectoryActionGoal_<ContainerAllocator> & v)
00288 {
00289 s << indent << "header: ";
00290 s << std::endl;
00291 Printer< ::std_msgs::Header_<ContainerAllocator> >::stream(s, indent + " ", v.header);
00292 s << indent << "goal_id: ";
00293 s << std::endl;
00294 Printer< ::actionlib_msgs::GoalID_<ContainerAllocator> >::stream(s, indent + " ", v.goal_id);
00295 s << indent << "goal: ";
00296 s << std::endl;
00297 Printer< ::pr2_controllers_msgs::JointTrajectoryGoal_<ContainerAllocator> >::stream(s, indent + " ", v.goal);
00298 }
00299 };
00300
00301
00302 }
00303 }
00304
00305 #endif // PR2_CONTROLLERS_MSGS_MESSAGE_JOINTTRAJECTORYACTIONGOAL_H
00306