00001
00002 #ifndef CONTROL_MSGS_MESSAGE_FOLLOWJOINTTRAJECTORYACTION_H
00003 #define CONTROL_MSGS_MESSAGE_FOLLOWJOINTTRAJECTORYACTION_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 "control_msgs/FollowJointTrajectoryActionGoal.h"
00014 #include "control_msgs/FollowJointTrajectoryActionResult.h"
00015 #include "control_msgs/FollowJointTrajectoryActionFeedback.h"
00016
00017 namespace control_msgs
00018 {
00019 template <class ContainerAllocator>
00020 struct FollowJointTrajectoryAction_ : public ros::Message
00021 {
00022 typedef FollowJointTrajectoryAction_<ContainerAllocator> Type;
00023
00024 FollowJointTrajectoryAction_()
00025 : action_goal()
00026 , action_result()
00027 , action_feedback()
00028 {
00029 }
00030
00031 FollowJointTrajectoryAction_(const ContainerAllocator& _alloc)
00032 : action_goal(_alloc)
00033 , action_result(_alloc)
00034 , action_feedback(_alloc)
00035 {
00036 }
00037
00038 typedef ::control_msgs::FollowJointTrajectoryActionGoal_<ContainerAllocator> _action_goal_type;
00039 ::control_msgs::FollowJointTrajectoryActionGoal_<ContainerAllocator> action_goal;
00040
00041 typedef ::control_msgs::FollowJointTrajectoryActionResult_<ContainerAllocator> _action_result_type;
00042 ::control_msgs::FollowJointTrajectoryActionResult_<ContainerAllocator> action_result;
00043
00044 typedef ::control_msgs::FollowJointTrajectoryActionFeedback_<ContainerAllocator> _action_feedback_type;
00045 ::control_msgs::FollowJointTrajectoryActionFeedback_<ContainerAllocator> action_feedback;
00046
00047
00048 private:
00049 static const char* __s_getDataType_() { return "control_msgs/FollowJointTrajectoryAction"; }
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 "a1222b69ec4dcd1675e990ca2f8fe9be"; }
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 FollowJointTrajectoryActionGoal action_goal\n\
00066 FollowJointTrajectoryActionResult action_result\n\
00067 FollowJointTrajectoryActionFeedback action_feedback\n\
00068 \n\
00069 ================================================================================\n\
00070 MSG: control_msgs/FollowJointTrajectoryActionGoal\n\
00071 # ====== DO NOT MODIFY! AUTOGENERATED FROM AN ACTION DEFINITION ======\n\
00072 \n\
00073 Header header\n\
00074 actionlib_msgs/GoalID goal_id\n\
00075 FollowJointTrajectoryGoal goal\n\
00076 \n\
00077 ================================================================================\n\
00078 MSG: std_msgs/Header\n\
00079 # Standard metadata for higher-level stamped data types.\n\
00080 # This is generally used to communicate timestamped data \n\
00081 # in a particular coordinate frame.\n\
00082 # \n\
00083 # sequence ID: consecutively increasing ID \n\
00084 uint32 seq\n\
00085 #Two-integer timestamp that is expressed as:\n\
00086 # * stamp.secs: seconds (stamp_secs) since epoch\n\
00087 # * stamp.nsecs: nanoseconds since stamp_secs\n\
00088 # time-handling sugar is provided by the client library\n\
00089 time stamp\n\
00090 #Frame this data is associated with\n\
00091 # 0: no frame\n\
00092 # 1: global frame\n\
00093 string frame_id\n\
00094 \n\
00095 ================================================================================\n\
00096 MSG: actionlib_msgs/GoalID\n\
00097 # The stamp should store the time at which this goal was requested.\n\
00098 # It is used by an action server when it tries to preempt all\n\
00099 # goals that were requested before a certain time\n\
00100 time stamp\n\
00101 \n\
00102 # The id provides a way to associate feedback and\n\
00103 # result message with specific goal requests. The id\n\
00104 # specified must be unique.\n\
00105 string id\n\
00106 \n\
00107 \n\
00108 ================================================================================\n\
00109 MSG: control_msgs/FollowJointTrajectoryGoal\n\
00110 # ====== DO NOT MODIFY! AUTOGENERATED FROM AN ACTION DEFINITION ======\n\
00111 # The joint trajectory to follow\n\
00112 trajectory_msgs/JointTrajectory trajectory\n\
00113 \n\
00114 # Tolerances for the trajectory. If the measured joint values fall\n\
00115 # outside the tolerances the trajectory goal is aborted. Any\n\
00116 # tolerances that are not specified (by being omitted or set to 0) are\n\
00117 # set to the defaults for the action server (often taken from the\n\
00118 # parameter server).\n\
00119 \n\
00120 # Tolerances applied to the joints as the trajectory is executed. If\n\
00121 # violated, the goal aborts with error_code set to\n\
00122 # PATH_TOLERANCE_VIOLATED.\n\
00123 JointTolerance[] path_tolerance\n\
00124 \n\
00125 # To report success, the joints must be within goal_tolerance of the\n\
00126 # final trajectory value. The goal must be achieved by time the\n\
00127 # trajectory ends plus goal_time_tolerance. (goal_time_tolerance\n\
00128 # allows some leeway in time, so that the trajectory goal can still\n\
00129 # succeed even if the joints reach the goal some time after the\n\
00130 # precise end time of the trajectory).\n\
00131 #\n\
00132 # If the joints are not within goal_tolerance after \"trajectory finish\n\
00133 # time\" + goal_time_tolerance, the goal aborts with error_code set to\n\
00134 # GOAL_TOLERANCE_VIOLATED\n\
00135 JointTolerance[] goal_tolerance\n\
00136 duration goal_time_tolerance\n\
00137 \n\
00138 \n\
00139 ================================================================================\n\
00140 MSG: trajectory_msgs/JointTrajectory\n\
00141 Header header\n\
00142 string[] joint_names\n\
00143 JointTrajectoryPoint[] points\n\
00144 ================================================================================\n\
00145 MSG: trajectory_msgs/JointTrajectoryPoint\n\
00146 float64[] positions\n\
00147 float64[] velocities\n\
00148 float64[] accelerations\n\
00149 duration time_from_start\n\
00150 ================================================================================\n\
00151 MSG: control_msgs/JointTolerance\n\
00152 # The tolerances specify the amount the position, velocity, and\n\
00153 # accelerations can vary from the setpoints. For example, in the case\n\
00154 # of trajectory control, when the actual position varies beyond\n\
00155 # (desired position + position tolerance), the trajectory goal may\n\
00156 # abort.\n\
00157 # \n\
00158 # There are two special values for tolerances:\n\
00159 # * 0 - The tolerance is unspecified and will remain at whatever the default is\n\
00160 # * -1 - The tolerance is \"erased\". If there was a default, the joint will be\n\
00161 # allowed to move without restriction.\n\
00162 \n\
00163 string name\n\
00164 float64 position # in radians or meters (for a revolute or prismatic joint, respectively)\n\
00165 float64 velocity # in rad/sec or m/sec\n\
00166 float64 acceleration # in rad/sec^2 or m/sec^2\n\
00167 \n\
00168 ================================================================================\n\
00169 MSG: control_msgs/FollowJointTrajectoryActionResult\n\
00170 # ====== DO NOT MODIFY! AUTOGENERATED FROM AN ACTION DEFINITION ======\n\
00171 \n\
00172 Header header\n\
00173 actionlib_msgs/GoalStatus status\n\
00174 FollowJointTrajectoryResult result\n\
00175 \n\
00176 ================================================================================\n\
00177 MSG: actionlib_msgs/GoalStatus\n\
00178 GoalID goal_id\n\
00179 uint8 status\n\
00180 uint8 PENDING = 0 # The goal has yet to be processed by the action server\n\
00181 uint8 ACTIVE = 1 # The goal is currently being processed by the action server\n\
00182 uint8 PREEMPTED = 2 # The goal received a cancel request after it started executing\n\
00183 # and has since completed its execution (Terminal State)\n\
00184 uint8 SUCCEEDED = 3 # The goal was achieved successfully by the action server (Terminal State)\n\
00185 uint8 ABORTED = 4 # The goal was aborted during execution by the action server due\n\
00186 # to some failure (Terminal State)\n\
00187 uint8 REJECTED = 5 # The goal was rejected by the action server without being processed,\n\
00188 # because the goal was unattainable or invalid (Terminal State)\n\
00189 uint8 PREEMPTING = 6 # The goal received a cancel request after it started executing\n\
00190 # and has not yet completed execution\n\
00191 uint8 RECALLING = 7 # The goal received a cancel request before it started executing,\n\
00192 # but the action server has not yet confirmed that the goal is canceled\n\
00193 uint8 RECALLED = 8 # The goal received a cancel request before it started executing\n\
00194 # and was successfully cancelled (Terminal State)\n\
00195 uint8 LOST = 9 # An action client can determine that a goal is LOST. This should not be\n\
00196 # sent over the wire by an action server\n\
00197 \n\
00198 #Allow for the user to associate a string with GoalStatus for debugging\n\
00199 string text\n\
00200 \n\
00201 \n\
00202 ================================================================================\n\
00203 MSG: control_msgs/FollowJointTrajectoryResult\n\
00204 # ====== DO NOT MODIFY! AUTOGENERATED FROM AN ACTION DEFINITION ======\n\
00205 int32 error_code\n\
00206 int32 SUCCESSFUL = 0\n\
00207 int32 INVALID_GOAL = -1\n\
00208 int32 INVALID_JOINTS = -2\n\
00209 int32 OLD_HEADER_TIMESTAMP = -3\n\
00210 int32 PATH_TOLERANCE_VIOLATED = -4\n\
00211 int32 GOAL_TOLERANCE_VIOLATED = -5\n\
00212 \n\
00213 \n\
00214 ================================================================================\n\
00215 MSG: control_msgs/FollowJointTrajectoryActionFeedback\n\
00216 # ====== DO NOT MODIFY! AUTOGENERATED FROM AN ACTION DEFINITION ======\n\
00217 \n\
00218 Header header\n\
00219 actionlib_msgs/GoalStatus status\n\
00220 FollowJointTrajectoryFeedback feedback\n\
00221 \n\
00222 ================================================================================\n\
00223 MSG: control_msgs/FollowJointTrajectoryFeedback\n\
00224 # ====== DO NOT MODIFY! AUTOGENERATED FROM AN ACTION DEFINITION ======\n\
00225 Header header\n\
00226 string[] joint_names\n\
00227 trajectory_msgs/JointTrajectoryPoint desired\n\
00228 trajectory_msgs/JointTrajectoryPoint actual\n\
00229 trajectory_msgs/JointTrajectoryPoint error\n\
00230 \n\
00231 \n\
00232 "; }
00233 public:
00234 ROS_DEPRECATED static const std::string __s_getMessageDefinition() { return __s_getMessageDefinition_(); }
00235
00236 ROS_DEPRECATED const std::string __getMessageDefinition() const { return __s_getMessageDefinition_(); }
00237
00238 ROS_DEPRECATED virtual uint8_t *serialize(uint8_t *write_ptr, uint32_t seq) const
00239 {
00240 ros::serialization::OStream stream(write_ptr, 1000000000);
00241 ros::serialization::serialize(stream, action_goal);
00242 ros::serialization::serialize(stream, action_result);
00243 ros::serialization::serialize(stream, action_feedback);
00244 return stream.getData();
00245 }
00246
00247 ROS_DEPRECATED virtual uint8_t *deserialize(uint8_t *read_ptr)
00248 {
00249 ros::serialization::IStream stream(read_ptr, 1000000000);
00250 ros::serialization::deserialize(stream, action_goal);
00251 ros::serialization::deserialize(stream, action_result);
00252 ros::serialization::deserialize(stream, action_feedback);
00253 return stream.getData();
00254 }
00255
00256 ROS_DEPRECATED virtual uint32_t serializationLength() const
00257 {
00258 uint32_t size = 0;
00259 size += ros::serialization::serializationLength(action_goal);
00260 size += ros::serialization::serializationLength(action_result);
00261 size += ros::serialization::serializationLength(action_feedback);
00262 return size;
00263 }
00264
00265 typedef boost::shared_ptr< ::control_msgs::FollowJointTrajectoryAction_<ContainerAllocator> > Ptr;
00266 typedef boost::shared_ptr< ::control_msgs::FollowJointTrajectoryAction_<ContainerAllocator> const> ConstPtr;
00267 };
00268 typedef ::control_msgs::FollowJointTrajectoryAction_<std::allocator<void> > FollowJointTrajectoryAction;
00269
00270 typedef boost::shared_ptr< ::control_msgs::FollowJointTrajectoryAction> FollowJointTrajectoryActionPtr;
00271 typedef boost::shared_ptr< ::control_msgs::FollowJointTrajectoryAction const> FollowJointTrajectoryActionConstPtr;
00272
00273
00274 template<typename ContainerAllocator>
00275 std::ostream& operator<<(std::ostream& s, const ::control_msgs::FollowJointTrajectoryAction_<ContainerAllocator> & v)
00276 {
00277 ros::message_operations::Printer< ::control_msgs::FollowJointTrajectoryAction_<ContainerAllocator> >::stream(s, "", v);
00278 return s;}
00279
00280 }
00281
00282 namespace ros
00283 {
00284 namespace message_traits
00285 {
00286 template<class ContainerAllocator>
00287 struct MD5Sum< ::control_msgs::FollowJointTrajectoryAction_<ContainerAllocator> > {
00288 static const char* value()
00289 {
00290 return "a1222b69ec4dcd1675e990ca2f8fe9be";
00291 }
00292
00293 static const char* value(const ::control_msgs::FollowJointTrajectoryAction_<ContainerAllocator> &) { return value(); }
00294 static const uint64_t static_value1 = 0xa1222b69ec4dcd16ULL;
00295 static const uint64_t static_value2 = 0x75e990ca2f8fe9beULL;
00296 };
00297
00298 template<class ContainerAllocator>
00299 struct DataType< ::control_msgs::FollowJointTrajectoryAction_<ContainerAllocator> > {
00300 static const char* value()
00301 {
00302 return "control_msgs/FollowJointTrajectoryAction";
00303 }
00304
00305 static const char* value(const ::control_msgs::FollowJointTrajectoryAction_<ContainerAllocator> &) { return value(); }
00306 };
00307
00308 template<class ContainerAllocator>
00309 struct Definition< ::control_msgs::FollowJointTrajectoryAction_<ContainerAllocator> > {
00310 static const char* value()
00311 {
00312 return "# ====== DO NOT MODIFY! AUTOGENERATED FROM AN ACTION DEFINITION ======\n\
00313 \n\
00314 FollowJointTrajectoryActionGoal action_goal\n\
00315 FollowJointTrajectoryActionResult action_result\n\
00316 FollowJointTrajectoryActionFeedback action_feedback\n\
00317 \n\
00318 ================================================================================\n\
00319 MSG: control_msgs/FollowJointTrajectoryActionGoal\n\
00320 # ====== DO NOT MODIFY! AUTOGENERATED FROM AN ACTION DEFINITION ======\n\
00321 \n\
00322 Header header\n\
00323 actionlib_msgs/GoalID goal_id\n\
00324 FollowJointTrajectoryGoal goal\n\
00325 \n\
00326 ================================================================================\n\
00327 MSG: std_msgs/Header\n\
00328 # Standard metadata for higher-level stamped data types.\n\
00329 # This is generally used to communicate timestamped data \n\
00330 # in a particular coordinate frame.\n\
00331 # \n\
00332 # sequence ID: consecutively increasing ID \n\
00333 uint32 seq\n\
00334 #Two-integer timestamp that is expressed as:\n\
00335 # * stamp.secs: seconds (stamp_secs) since epoch\n\
00336 # * stamp.nsecs: nanoseconds since stamp_secs\n\
00337 # time-handling sugar is provided by the client library\n\
00338 time stamp\n\
00339 #Frame this data is associated with\n\
00340 # 0: no frame\n\
00341 # 1: global frame\n\
00342 string frame_id\n\
00343 \n\
00344 ================================================================================\n\
00345 MSG: actionlib_msgs/GoalID\n\
00346 # The stamp should store the time at which this goal was requested.\n\
00347 # It is used by an action server when it tries to preempt all\n\
00348 # goals that were requested before a certain time\n\
00349 time stamp\n\
00350 \n\
00351 # The id provides a way to associate feedback and\n\
00352 # result message with specific goal requests. The id\n\
00353 # specified must be unique.\n\
00354 string id\n\
00355 \n\
00356 \n\
00357 ================================================================================\n\
00358 MSG: control_msgs/FollowJointTrajectoryGoal\n\
00359 # ====== DO NOT MODIFY! AUTOGENERATED FROM AN ACTION DEFINITION ======\n\
00360 # The joint trajectory to follow\n\
00361 trajectory_msgs/JointTrajectory trajectory\n\
00362 \n\
00363 # Tolerances for the trajectory. If the measured joint values fall\n\
00364 # outside the tolerances the trajectory goal is aborted. Any\n\
00365 # tolerances that are not specified (by being omitted or set to 0) are\n\
00366 # set to the defaults for the action server (often taken from the\n\
00367 # parameter server).\n\
00368 \n\
00369 # Tolerances applied to the joints as the trajectory is executed. If\n\
00370 # violated, the goal aborts with error_code set to\n\
00371 # PATH_TOLERANCE_VIOLATED.\n\
00372 JointTolerance[] path_tolerance\n\
00373 \n\
00374 # To report success, the joints must be within goal_tolerance of the\n\
00375 # final trajectory value. The goal must be achieved by time the\n\
00376 # trajectory ends plus goal_time_tolerance. (goal_time_tolerance\n\
00377 # allows some leeway in time, so that the trajectory goal can still\n\
00378 # succeed even if the joints reach the goal some time after the\n\
00379 # precise end time of the trajectory).\n\
00380 #\n\
00381 # If the joints are not within goal_tolerance after \"trajectory finish\n\
00382 # time\" + goal_time_tolerance, the goal aborts with error_code set to\n\
00383 # GOAL_TOLERANCE_VIOLATED\n\
00384 JointTolerance[] goal_tolerance\n\
00385 duration goal_time_tolerance\n\
00386 \n\
00387 \n\
00388 ================================================================================\n\
00389 MSG: trajectory_msgs/JointTrajectory\n\
00390 Header header\n\
00391 string[] joint_names\n\
00392 JointTrajectoryPoint[] points\n\
00393 ================================================================================\n\
00394 MSG: trajectory_msgs/JointTrajectoryPoint\n\
00395 float64[] positions\n\
00396 float64[] velocities\n\
00397 float64[] accelerations\n\
00398 duration time_from_start\n\
00399 ================================================================================\n\
00400 MSG: control_msgs/JointTolerance\n\
00401 # The tolerances specify the amount the position, velocity, and\n\
00402 # accelerations can vary from the setpoints. For example, in the case\n\
00403 # of trajectory control, when the actual position varies beyond\n\
00404 # (desired position + position tolerance), the trajectory goal may\n\
00405 # abort.\n\
00406 # \n\
00407 # There are two special values for tolerances:\n\
00408 # * 0 - The tolerance is unspecified and will remain at whatever the default is\n\
00409 # * -1 - The tolerance is \"erased\". If there was a default, the joint will be\n\
00410 # allowed to move without restriction.\n\
00411 \n\
00412 string name\n\
00413 float64 position # in radians or meters (for a revolute or prismatic joint, respectively)\n\
00414 float64 velocity # in rad/sec or m/sec\n\
00415 float64 acceleration # in rad/sec^2 or m/sec^2\n\
00416 \n\
00417 ================================================================================\n\
00418 MSG: control_msgs/FollowJointTrajectoryActionResult\n\
00419 # ====== DO NOT MODIFY! AUTOGENERATED FROM AN ACTION DEFINITION ======\n\
00420 \n\
00421 Header header\n\
00422 actionlib_msgs/GoalStatus status\n\
00423 FollowJointTrajectoryResult result\n\
00424 \n\
00425 ================================================================================\n\
00426 MSG: actionlib_msgs/GoalStatus\n\
00427 GoalID goal_id\n\
00428 uint8 status\n\
00429 uint8 PENDING = 0 # The goal has yet to be processed by the action server\n\
00430 uint8 ACTIVE = 1 # The goal is currently being processed by the action server\n\
00431 uint8 PREEMPTED = 2 # The goal received a cancel request after it started executing\n\
00432 # and has since completed its execution (Terminal State)\n\
00433 uint8 SUCCEEDED = 3 # The goal was achieved successfully by the action server (Terminal State)\n\
00434 uint8 ABORTED = 4 # The goal was aborted during execution by the action server due\n\
00435 # to some failure (Terminal State)\n\
00436 uint8 REJECTED = 5 # The goal was rejected by the action server without being processed,\n\
00437 # because the goal was unattainable or invalid (Terminal State)\n\
00438 uint8 PREEMPTING = 6 # The goal received a cancel request after it started executing\n\
00439 # and has not yet completed execution\n\
00440 uint8 RECALLING = 7 # The goal received a cancel request before it started executing,\n\
00441 # but the action server has not yet confirmed that the goal is canceled\n\
00442 uint8 RECALLED = 8 # The goal received a cancel request before it started executing\n\
00443 # and was successfully cancelled (Terminal State)\n\
00444 uint8 LOST = 9 # An action client can determine that a goal is LOST. This should not be\n\
00445 # sent over the wire by an action server\n\
00446 \n\
00447 #Allow for the user to associate a string with GoalStatus for debugging\n\
00448 string text\n\
00449 \n\
00450 \n\
00451 ================================================================================\n\
00452 MSG: control_msgs/FollowJointTrajectoryResult\n\
00453 # ====== DO NOT MODIFY! AUTOGENERATED FROM AN ACTION DEFINITION ======\n\
00454 int32 error_code\n\
00455 int32 SUCCESSFUL = 0\n\
00456 int32 INVALID_GOAL = -1\n\
00457 int32 INVALID_JOINTS = -2\n\
00458 int32 OLD_HEADER_TIMESTAMP = -3\n\
00459 int32 PATH_TOLERANCE_VIOLATED = -4\n\
00460 int32 GOAL_TOLERANCE_VIOLATED = -5\n\
00461 \n\
00462 \n\
00463 ================================================================================\n\
00464 MSG: control_msgs/FollowJointTrajectoryActionFeedback\n\
00465 # ====== DO NOT MODIFY! AUTOGENERATED FROM AN ACTION DEFINITION ======\n\
00466 \n\
00467 Header header\n\
00468 actionlib_msgs/GoalStatus status\n\
00469 FollowJointTrajectoryFeedback feedback\n\
00470 \n\
00471 ================================================================================\n\
00472 MSG: control_msgs/FollowJointTrajectoryFeedback\n\
00473 # ====== DO NOT MODIFY! AUTOGENERATED FROM AN ACTION DEFINITION ======\n\
00474 Header header\n\
00475 string[] joint_names\n\
00476 trajectory_msgs/JointTrajectoryPoint desired\n\
00477 trajectory_msgs/JointTrajectoryPoint actual\n\
00478 trajectory_msgs/JointTrajectoryPoint error\n\
00479 \n\
00480 \n\
00481 ";
00482 }
00483
00484 static const char* value(const ::control_msgs::FollowJointTrajectoryAction_<ContainerAllocator> &) { return value(); }
00485 };
00486
00487 }
00488 }
00489
00490 namespace ros
00491 {
00492 namespace serialization
00493 {
00494
00495 template<class ContainerAllocator> struct Serializer< ::control_msgs::FollowJointTrajectoryAction_<ContainerAllocator> >
00496 {
00497 template<typename Stream, typename T> inline static void allInOne(Stream& stream, T m)
00498 {
00499 stream.next(m.action_goal);
00500 stream.next(m.action_result);
00501 stream.next(m.action_feedback);
00502 }
00503
00504 ROS_DECLARE_ALLINONE_SERIALIZER;
00505 };
00506 }
00507 }
00508
00509 namespace ros
00510 {
00511 namespace message_operations
00512 {
00513
00514 template<class ContainerAllocator>
00515 struct Printer< ::control_msgs::FollowJointTrajectoryAction_<ContainerAllocator> >
00516 {
00517 template<typename Stream> static void stream(Stream& s, const std::string& indent, const ::control_msgs::FollowJointTrajectoryAction_<ContainerAllocator> & v)
00518 {
00519 s << indent << "action_goal: ";
00520 s << std::endl;
00521 Printer< ::control_msgs::FollowJointTrajectoryActionGoal_<ContainerAllocator> >::stream(s, indent + " ", v.action_goal);
00522 s << indent << "action_result: ";
00523 s << std::endl;
00524 Printer< ::control_msgs::FollowJointTrajectoryActionResult_<ContainerAllocator> >::stream(s, indent + " ", v.action_result);
00525 s << indent << "action_feedback: ";
00526 s << std::endl;
00527 Printer< ::control_msgs::FollowJointTrajectoryActionFeedback_<ContainerAllocator> >::stream(s, indent + " ", v.action_feedback);
00528 }
00529 };
00530
00531
00532 }
00533 }
00534
00535 #endif // CONTROL_MSGS_MESSAGE_FOLLOWJOINTTRAJECTORYACTION_H
00536