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