00001
00002 #ifndef TF2_MSGS_MESSAGE_LOOKUPTRANSFORMACTIONGOAL_H
00003 #define TF2_MSGS_MESSAGE_LOOKUPTRANSFORMACTIONGOAL_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 "tf2_msgs/LookupTransformGoal.h"
00016
00017 namespace tf2_msgs
00018 {
00019 template <class ContainerAllocator>
00020 struct LookupTransformActionGoal_ : public ros::Message
00021 {
00022 typedef LookupTransformActionGoal_<ContainerAllocator> Type;
00023
00024 LookupTransformActionGoal_()
00025 : header()
00026 , goal_id()
00027 , goal()
00028 {
00029 }
00030
00031 LookupTransformActionGoal_(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 ::tf2_msgs::LookupTransformGoal_<ContainerAllocator> _goal_type;
00045 ::tf2_msgs::LookupTransformGoal_<ContainerAllocator> goal;
00046
00047
00048 private:
00049 static const char* __s_getDataType_() { return "tf2_msgs/LookupTransformActionGoal"; }
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 "f2e7bcdb75c847978d0351a13e699da5"; }
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 LookupTransformGoal 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: tf2_msgs/LookupTransformGoal\n\
00102 # ====== DO NOT MODIFY! AUTOGENERATED FROM AN ACTION DEFINITION ======\n\
00103 #Simple API\n\
00104 string target_frame\n\
00105 string source_frame\n\
00106 time source_time\n\
00107 duration timeout\n\
00108 \n\
00109 #Advanced API\n\
00110 time target_time\n\
00111 string fixed_frame\n\
00112 \n\
00113 #Whether or not to use the advanced API\n\
00114 bool advanced\n\
00115 \n\
00116 \n\
00117 "; }
00118 public:
00119 ROS_DEPRECATED static const std::string __s_getMessageDefinition() { return __s_getMessageDefinition_(); }
00120
00121 ROS_DEPRECATED const std::string __getMessageDefinition() const { return __s_getMessageDefinition_(); }
00122
00123 ROS_DEPRECATED virtual uint8_t *serialize(uint8_t *write_ptr, uint32_t seq) const
00124 {
00125 ros::serialization::OStream stream(write_ptr, 1000000000);
00126 ros::serialization::serialize(stream, header);
00127 ros::serialization::serialize(stream, goal_id);
00128 ros::serialization::serialize(stream, goal);
00129 return stream.getData();
00130 }
00131
00132 ROS_DEPRECATED virtual uint8_t *deserialize(uint8_t *read_ptr)
00133 {
00134 ros::serialization::IStream stream(read_ptr, 1000000000);
00135 ros::serialization::deserialize(stream, header);
00136 ros::serialization::deserialize(stream, goal_id);
00137 ros::serialization::deserialize(stream, goal);
00138 return stream.getData();
00139 }
00140
00141 ROS_DEPRECATED virtual uint32_t serializationLength() const
00142 {
00143 uint32_t size = 0;
00144 size += ros::serialization::serializationLength(header);
00145 size += ros::serialization::serializationLength(goal_id);
00146 size += ros::serialization::serializationLength(goal);
00147 return size;
00148 }
00149
00150 typedef boost::shared_ptr< ::tf2_msgs::LookupTransformActionGoal_<ContainerAllocator> > Ptr;
00151 typedef boost::shared_ptr< ::tf2_msgs::LookupTransformActionGoal_<ContainerAllocator> const> ConstPtr;
00152 };
00153 typedef ::tf2_msgs::LookupTransformActionGoal_<std::allocator<void> > LookupTransformActionGoal;
00154
00155 typedef boost::shared_ptr< ::tf2_msgs::LookupTransformActionGoal> LookupTransformActionGoalPtr;
00156 typedef boost::shared_ptr< ::tf2_msgs::LookupTransformActionGoal const> LookupTransformActionGoalConstPtr;
00157
00158
00159 template<typename ContainerAllocator>
00160 std::ostream& operator<<(std::ostream& s, const ::tf2_msgs::LookupTransformActionGoal_<ContainerAllocator> & v)
00161 {
00162 ros::message_operations::Printer< ::tf2_msgs::LookupTransformActionGoal_<ContainerAllocator> >::stream(s, "", v);
00163 return s;}
00164
00165 }
00166
00167 namespace ros
00168 {
00169 namespace message_traits
00170 {
00171 template<class ContainerAllocator>
00172 struct MD5Sum< ::tf2_msgs::LookupTransformActionGoal_<ContainerAllocator> > {
00173 static const char* value()
00174 {
00175 return "f2e7bcdb75c847978d0351a13e699da5";
00176 }
00177
00178 static const char* value(const ::tf2_msgs::LookupTransformActionGoal_<ContainerAllocator> &) { return value(); }
00179 static const uint64_t static_value1 = 0xf2e7bcdb75c84797ULL;
00180 static const uint64_t static_value2 = 0x8d0351a13e699da5ULL;
00181 };
00182
00183 template<class ContainerAllocator>
00184 struct DataType< ::tf2_msgs::LookupTransformActionGoal_<ContainerAllocator> > {
00185 static const char* value()
00186 {
00187 return "tf2_msgs/LookupTransformActionGoal";
00188 }
00189
00190 static const char* value(const ::tf2_msgs::LookupTransformActionGoal_<ContainerAllocator> &) { return value(); }
00191 };
00192
00193 template<class ContainerAllocator>
00194 struct Definition< ::tf2_msgs::LookupTransformActionGoal_<ContainerAllocator> > {
00195 static const char* value()
00196 {
00197 return "# ====== DO NOT MODIFY! AUTOGENERATED FROM AN ACTION DEFINITION ======\n\
00198 \n\
00199 Header header\n\
00200 actionlib_msgs/GoalID goal_id\n\
00201 LookupTransformGoal goal\n\
00202 \n\
00203 ================================================================================\n\
00204 MSG: std_msgs/Header\n\
00205 # Standard metadata for higher-level stamped data types.\n\
00206 # This is generally used to communicate timestamped data \n\
00207 # in a particular coordinate frame.\n\
00208 # \n\
00209 # sequence ID: consecutively increasing ID \n\
00210 uint32 seq\n\
00211 #Two-integer timestamp that is expressed as:\n\
00212 # * stamp.secs: seconds (stamp_secs) since epoch\n\
00213 # * stamp.nsecs: nanoseconds since stamp_secs\n\
00214 # time-handling sugar is provided by the client library\n\
00215 time stamp\n\
00216 #Frame this data is associated with\n\
00217 # 0: no frame\n\
00218 # 1: global frame\n\
00219 string frame_id\n\
00220 \n\
00221 ================================================================================\n\
00222 MSG: actionlib_msgs/GoalID\n\
00223 # The stamp should store the time at which this goal was requested.\n\
00224 # It is used by an action server when it tries to preempt all\n\
00225 # goals that were requested before a certain time\n\
00226 time stamp\n\
00227 \n\
00228 # The id provides a way to associate feedback and\n\
00229 # result message with specific goal requests. The id\n\
00230 # specified must be unique.\n\
00231 string id\n\
00232 \n\
00233 \n\
00234 ================================================================================\n\
00235 MSG: tf2_msgs/LookupTransformGoal\n\
00236 # ====== DO NOT MODIFY! AUTOGENERATED FROM AN ACTION DEFINITION ======\n\
00237 #Simple API\n\
00238 string target_frame\n\
00239 string source_frame\n\
00240 time source_time\n\
00241 duration timeout\n\
00242 \n\
00243 #Advanced API\n\
00244 time target_time\n\
00245 string fixed_frame\n\
00246 \n\
00247 #Whether or not to use the advanced API\n\
00248 bool advanced\n\
00249 \n\
00250 \n\
00251 ";
00252 }
00253
00254 static const char* value(const ::tf2_msgs::LookupTransformActionGoal_<ContainerAllocator> &) { return value(); }
00255 };
00256
00257 template<class ContainerAllocator> struct HasHeader< ::tf2_msgs::LookupTransformActionGoal_<ContainerAllocator> > : public TrueType {};
00258 template<class ContainerAllocator> struct HasHeader< const ::tf2_msgs::LookupTransformActionGoal_<ContainerAllocator> > : public TrueType {};
00259 }
00260 }
00261
00262 namespace ros
00263 {
00264 namespace serialization
00265 {
00266
00267 template<class ContainerAllocator> struct Serializer< ::tf2_msgs::LookupTransformActionGoal_<ContainerAllocator> >
00268 {
00269 template<typename Stream, typename T> inline static void allInOne(Stream& stream, T m)
00270 {
00271 stream.next(m.header);
00272 stream.next(m.goal_id);
00273 stream.next(m.goal);
00274 }
00275
00276 ROS_DECLARE_ALLINONE_SERIALIZER;
00277 };
00278 }
00279 }
00280
00281 namespace ros
00282 {
00283 namespace message_operations
00284 {
00285
00286 template<class ContainerAllocator>
00287 struct Printer< ::tf2_msgs::LookupTransformActionGoal_<ContainerAllocator> >
00288 {
00289 template<typename Stream> static void stream(Stream& s, const std::string& indent, const ::tf2_msgs::LookupTransformActionGoal_<ContainerAllocator> & v)
00290 {
00291 s << indent << "header: ";
00292 s << std::endl;
00293 Printer< ::std_msgs::Header_<ContainerAllocator> >::stream(s, indent + " ", v.header);
00294 s << indent << "goal_id: ";
00295 s << std::endl;
00296 Printer< ::actionlib_msgs::GoalID_<ContainerAllocator> >::stream(s, indent + " ", v.goal_id);
00297 s << indent << "goal: ";
00298 s << std::endl;
00299 Printer< ::tf2_msgs::LookupTransformGoal_<ContainerAllocator> >::stream(s, indent + " ", v.goal);
00300 }
00301 };
00302
00303
00304 }
00305 }
00306
00307 #endif // TF2_MSGS_MESSAGE_LOOKUPTRANSFORMACTIONGOAL_H
00308