PickResults.h
Go to the documentation of this file.
00001 /* Auto-generated by genmsg_cpp for file /home/rosbuild/hudson/workspace/doc-fuerte-visualization_engine/doc_stacks/2013-12-11_14-28-19.339941/visualization_engine/rve_msgs/msg/PickResults.msg */
00002 #ifndef RVE_MSGS_MESSAGE_PICKRESULTS_H
00003 #define RVE_MSGS_MESSAGE_PICKRESULTS_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 "rve_msgs/PickResult.h"
00018 
00019 namespace rve_msgs
00020 {
00021 template <class ContainerAllocator>
00022 struct PickResults_ {
00023   typedef PickResults_<ContainerAllocator> Type;
00024 
00025   PickResults_()
00026   : results()
00027   {
00028   }
00029 
00030   PickResults_(const ContainerAllocator& _alloc)
00031   : results(_alloc)
00032   {
00033   }
00034 
00035   typedef std::vector< ::rve_msgs::PickResult_<ContainerAllocator> , typename ContainerAllocator::template rebind< ::rve_msgs::PickResult_<ContainerAllocator> >::other >  _results_type;
00036   std::vector< ::rve_msgs::PickResult_<ContainerAllocator> , typename ContainerAllocator::template rebind< ::rve_msgs::PickResult_<ContainerAllocator> >::other >  results;
00037 
00038 
00039   typedef boost::shared_ptr< ::rve_msgs::PickResults_<ContainerAllocator> > Ptr;
00040   typedef boost::shared_ptr< ::rve_msgs::PickResults_<ContainerAllocator>  const> ConstPtr;
00041   boost::shared_ptr<std::map<std::string, std::string> > __connection_header;
00042 }; // struct PickResults
00043 typedef  ::rve_msgs::PickResults_<std::allocator<void> > PickResults;
00044 
00045 typedef boost::shared_ptr< ::rve_msgs::PickResults> PickResultsPtr;
00046 typedef boost::shared_ptr< ::rve_msgs::PickResults const> PickResultsConstPtr;
00047 
00048 
00049 template<typename ContainerAllocator>
00050 std::ostream& operator<<(std::ostream& s, const  ::rve_msgs::PickResults_<ContainerAllocator> & v)
00051 {
00052   ros::message_operations::Printer< ::rve_msgs::PickResults_<ContainerAllocator> >::stream(s, "", v);
00053   return s;}
00054 
00055 } // namespace rve_msgs
00056 
00057 namespace ros
00058 {
00059 namespace message_traits
00060 {
00061 template<class ContainerAllocator> struct IsMessage< ::rve_msgs::PickResults_<ContainerAllocator> > : public TrueType {};
00062 template<class ContainerAllocator> struct IsMessage< ::rve_msgs::PickResults_<ContainerAllocator>  const> : public TrueType {};
00063 template<class ContainerAllocator>
00064 struct MD5Sum< ::rve_msgs::PickResults_<ContainerAllocator> > {
00065   static const char* value() 
00066   {
00067     return "36bda0f2580c0e1db74134fa9629ab64";
00068   }
00069 
00070   static const char* value(const  ::rve_msgs::PickResults_<ContainerAllocator> &) { return value(); } 
00071   static const uint64_t static_value1 = 0x36bda0f2580c0e1dULL;
00072   static const uint64_t static_value2 = 0xb74134fa9629ab64ULL;
00073 };
00074 
00075 template<class ContainerAllocator>
00076 struct DataType< ::rve_msgs::PickResults_<ContainerAllocator> > {
00077   static const char* value() 
00078   {
00079     return "rve_msgs/PickResults";
00080   }
00081 
00082   static const char* value(const  ::rve_msgs::PickResults_<ContainerAllocator> &) { return value(); } 
00083 };
00084 
00085 template<class ContainerAllocator>
00086 struct Definition< ::rve_msgs::PickResults_<ContainerAllocator> > {
00087   static const char* value() 
00088   {
00089     return "PickResult[] results\n\
00090 \n\
00091 ================================================================================\n\
00092 MSG: rve_msgs/PickResult\n\
00093 UUID id\n\
00094 uint32 extra\n\
00095 \n\
00096 ================================================================================\n\
00097 MSG: rve_msgs/UUID\n\
00098 uint8[16] data\n\
00099 \n\
00100 ";
00101   }
00102 
00103   static const char* value(const  ::rve_msgs::PickResults_<ContainerAllocator> &) { return value(); } 
00104 };
00105 
00106 } // namespace message_traits
00107 } // namespace ros
00108 
00109 namespace ros
00110 {
00111 namespace serialization
00112 {
00113 
00114 template<class ContainerAllocator> struct Serializer< ::rve_msgs::PickResults_<ContainerAllocator> >
00115 {
00116   template<typename Stream, typename T> inline static void allInOne(Stream& stream, T m)
00117   {
00118     stream.next(m.results);
00119   }
00120 
00121   ROS_DECLARE_ALLINONE_SERIALIZER;
00122 }; // struct PickResults_
00123 } // namespace serialization
00124 } // namespace ros
00125 
00126 namespace ros
00127 {
00128 namespace message_operations
00129 {
00130 
00131 template<class ContainerAllocator>
00132 struct Printer< ::rve_msgs::PickResults_<ContainerAllocator> >
00133 {
00134   template<typename Stream> static void stream(Stream& s, const std::string& indent, const  ::rve_msgs::PickResults_<ContainerAllocator> & v) 
00135   {
00136     s << indent << "results[]" << std::endl;
00137     for (size_t i = 0; i < v.results.size(); ++i)
00138     {
00139       s << indent << "  results[" << i << "]: ";
00140       s << std::endl;
00141       s << indent;
00142       Printer< ::rve_msgs::PickResult_<ContainerAllocator> >::stream(s, indent + "    ", v.results[i]);
00143     }
00144   }
00145 };
00146 
00147 
00148 } // namespace message_operations
00149 } // namespace ros
00150 
00151 #endif // RVE_MSGS_MESSAGE_PICKRESULTS_H
00152 


rve_msgs
Author(s): Josh Faust
autogenerated on Wed Dec 11 2013 14:30:39