00001
00002 #ifndef INTERVAL_INTERSECTION_MESSAGE_CONFIGACTIONGOAL_H
00003 #define INTERVAL_INTERSECTION_MESSAGE_CONFIGACTIONGOAL_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 "interval_intersection/ConfigGoal.h"
00016
00017 namespace interval_intersection
00018 {
00019 template <class ContainerAllocator>
00020 struct ConfigActionGoal_ : public ros::Message
00021 {
00022 typedef ConfigActionGoal_<ContainerAllocator> Type;
00023
00024 ConfigActionGoal_()
00025 : header()
00026 , goal_id()
00027 , goal()
00028 {
00029 }
00030
00031 ConfigActionGoal_(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 ::interval_intersection::ConfigGoal_<ContainerAllocator> _goal_type;
00045 ::interval_intersection::ConfigGoal_<ContainerAllocator> goal;
00046
00047
00048 private:
00049 static const char* __s_getDataType_() { return "interval_intersection/ConfigActionGoal"; }
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 "3b9fc6a01b069b3d8598f7752ccdee82"; }
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 "\n\
00064 Header header\n\
00065 actionlib_msgs/GoalID goal_id\n\
00066 ConfigGoal goal\n\
00067 \n\
00068 ================================================================================\n\
00069 MSG: std_msgs/Header\n\
00070 # Standard metadata for higher-level stamped data types.\n\
00071 # This is generally used to communicate timestamped data \n\
00072 # in a particular coordinate frame.\n\
00073 # \n\
00074 # sequence ID: consecutively increasing ID \n\
00075 uint32 seq\n\
00076 #Two-integer timestamp that is expressed as:\n\
00077 # * stamp.secs: seconds (stamp_secs) since epoch\n\
00078 # * stamp.nsecs: nanoseconds since stamp_secs\n\
00079 # time-handling sugar is provided by the client library\n\
00080 time stamp\n\
00081 #Frame this data is associated with\n\
00082 # 0: no frame\n\
00083 # 1: global frame\n\
00084 string frame_id\n\
00085 \n\
00086 ================================================================================\n\
00087 MSG: actionlib_msgs/GoalID\n\
00088 # The stamp should store the time at which this goal was requested.\n\
00089 # It is used by an action server when it tries to preempt all\n\
00090 # goals that were requested before a certain time\n\
00091 time stamp\n\
00092 \n\
00093 # The id provides a way to associate feedback and\n\
00094 # result message with specific goal requests. The id\n\
00095 # specified must be unique.\n\
00096 string id\n\
00097 \n\
00098 \n\
00099 ================================================================================\n\
00100 MSG: interval_intersection/ConfigGoal\n\
00101 string[] topics\n\
00102 \n\
00103 "; }
00104 public:
00105 ROS_DEPRECATED static const std::string __s_getMessageDefinition() { return __s_getMessageDefinition_(); }
00106
00107 ROS_DEPRECATED const std::string __getMessageDefinition() const { return __s_getMessageDefinition_(); }
00108
00109 ROS_DEPRECATED virtual uint8_t *serialize(uint8_t *write_ptr, uint32_t seq) const
00110 {
00111 ros::serialization::OStream stream(write_ptr, 1000000000);
00112 ros::serialization::serialize(stream, header);
00113 ros::serialization::serialize(stream, goal_id);
00114 ros::serialization::serialize(stream, goal);
00115 return stream.getData();
00116 }
00117
00118 ROS_DEPRECATED virtual uint8_t *deserialize(uint8_t *read_ptr)
00119 {
00120 ros::serialization::IStream stream(read_ptr, 1000000000);
00121 ros::serialization::deserialize(stream, header);
00122 ros::serialization::deserialize(stream, goal_id);
00123 ros::serialization::deserialize(stream, goal);
00124 return stream.getData();
00125 }
00126
00127 ROS_DEPRECATED virtual uint32_t serializationLength() const
00128 {
00129 uint32_t size = 0;
00130 size += ros::serialization::serializationLength(header);
00131 size += ros::serialization::serializationLength(goal_id);
00132 size += ros::serialization::serializationLength(goal);
00133 return size;
00134 }
00135
00136 typedef boost::shared_ptr< ::interval_intersection::ConfigActionGoal_<ContainerAllocator> > Ptr;
00137 typedef boost::shared_ptr< ::interval_intersection::ConfigActionGoal_<ContainerAllocator> const> ConstPtr;
00138 };
00139 typedef ::interval_intersection::ConfigActionGoal_<std::allocator<void> > ConfigActionGoal;
00140
00141 typedef boost::shared_ptr< ::interval_intersection::ConfigActionGoal> ConfigActionGoalPtr;
00142 typedef boost::shared_ptr< ::interval_intersection::ConfigActionGoal const> ConfigActionGoalConstPtr;
00143
00144
00145 template<typename ContainerAllocator>
00146 std::ostream& operator<<(std::ostream& s, const ::interval_intersection::ConfigActionGoal_<ContainerAllocator> & v)
00147 {
00148 ros::message_operations::Printer< ::interval_intersection::ConfigActionGoal_<ContainerAllocator> >::stream(s, "", v);
00149 return s;}
00150
00151 }
00152
00153 namespace ros
00154 {
00155 namespace message_traits
00156 {
00157 template<class ContainerAllocator>
00158 struct MD5Sum< ::interval_intersection::ConfigActionGoal_<ContainerAllocator> > {
00159 static const char* value()
00160 {
00161 return "3b9fc6a01b069b3d8598f7752ccdee82";
00162 }
00163
00164 static const char* value(const ::interval_intersection::ConfigActionGoal_<ContainerAllocator> &) { return value(); }
00165 static const uint64_t static_value1 = 0x3b9fc6a01b069b3dULL;
00166 static const uint64_t static_value2 = 0x8598f7752ccdee82ULL;
00167 };
00168
00169 template<class ContainerAllocator>
00170 struct DataType< ::interval_intersection::ConfigActionGoal_<ContainerAllocator> > {
00171 static const char* value()
00172 {
00173 return "interval_intersection/ConfigActionGoal";
00174 }
00175
00176 static const char* value(const ::interval_intersection::ConfigActionGoal_<ContainerAllocator> &) { return value(); }
00177 };
00178
00179 template<class ContainerAllocator>
00180 struct Definition< ::interval_intersection::ConfigActionGoal_<ContainerAllocator> > {
00181 static const char* value()
00182 {
00183 return "\n\
00184 Header header\n\
00185 actionlib_msgs/GoalID goal_id\n\
00186 ConfigGoal goal\n\
00187 \n\
00188 ================================================================================\n\
00189 MSG: std_msgs/Header\n\
00190 # Standard metadata for higher-level stamped data types.\n\
00191 # This is generally used to communicate timestamped data \n\
00192 # in a particular coordinate frame.\n\
00193 # \n\
00194 # sequence ID: consecutively increasing ID \n\
00195 uint32 seq\n\
00196 #Two-integer timestamp that is expressed as:\n\
00197 # * stamp.secs: seconds (stamp_secs) since epoch\n\
00198 # * stamp.nsecs: nanoseconds since stamp_secs\n\
00199 # time-handling sugar is provided by the client library\n\
00200 time stamp\n\
00201 #Frame this data is associated with\n\
00202 # 0: no frame\n\
00203 # 1: global frame\n\
00204 string frame_id\n\
00205 \n\
00206 ================================================================================\n\
00207 MSG: actionlib_msgs/GoalID\n\
00208 # The stamp should store the time at which this goal was requested.\n\
00209 # It is used by an action server when it tries to preempt all\n\
00210 # goals that were requested before a certain time\n\
00211 time stamp\n\
00212 \n\
00213 # The id provides a way to associate feedback and\n\
00214 # result message with specific goal requests. The id\n\
00215 # specified must be unique.\n\
00216 string id\n\
00217 \n\
00218 \n\
00219 ================================================================================\n\
00220 MSG: interval_intersection/ConfigGoal\n\
00221 string[] topics\n\
00222 \n\
00223 ";
00224 }
00225
00226 static const char* value(const ::interval_intersection::ConfigActionGoal_<ContainerAllocator> &) { return value(); }
00227 };
00228
00229 template<class ContainerAllocator> struct HasHeader< ::interval_intersection::ConfigActionGoal_<ContainerAllocator> > : public TrueType {};
00230 template<class ContainerAllocator> struct HasHeader< const ::interval_intersection::ConfigActionGoal_<ContainerAllocator> > : public TrueType {};
00231 }
00232 }
00233
00234 namespace ros
00235 {
00236 namespace serialization
00237 {
00238
00239 template<class ContainerAllocator> struct Serializer< ::interval_intersection::ConfigActionGoal_<ContainerAllocator> >
00240 {
00241 template<typename Stream, typename T> inline static void allInOne(Stream& stream, T m)
00242 {
00243 stream.next(m.header);
00244 stream.next(m.goal_id);
00245 stream.next(m.goal);
00246 }
00247
00248 ROS_DECLARE_ALLINONE_SERIALIZER;
00249 };
00250 }
00251 }
00252
00253 namespace ros
00254 {
00255 namespace message_operations
00256 {
00257
00258 template<class ContainerAllocator>
00259 struct Printer< ::interval_intersection::ConfigActionGoal_<ContainerAllocator> >
00260 {
00261 template<typename Stream> static void stream(Stream& s, const std::string& indent, const ::interval_intersection::ConfigActionGoal_<ContainerAllocator> & v)
00262 {
00263 s << indent << "header: ";
00264 s << std::endl;
00265 Printer< ::std_msgs::Header_<ContainerAllocator> >::stream(s, indent + " ", v.header);
00266 s << indent << "goal_id: ";
00267 s << std::endl;
00268 Printer< ::actionlib_msgs::GoalID_<ContainerAllocator> >::stream(s, indent + " ", v.goal_id);
00269 s << indent << "goal: ";
00270 s << std::endl;
00271 Printer< ::interval_intersection::ConfigGoal_<ContainerAllocator> >::stream(s, indent + " ", v.goal);
00272 }
00273 };
00274
00275
00276 }
00277 }
00278
00279 #endif // INTERVAL_INTERSECTION_MESSAGE_CONFIGACTIONGOAL_H
00280