PanoCaptureResult.h
Go to the documentation of this file.
00001 /* Auto-generated by genmsg_cpp for file /home/rosbuild/hudson/workspace/doc-groovy-turtlebot_apps/doc_stacks/2014-10-06_07-59-52.754178/turtlebot_apps/software/pano/pano_ros/msg/PanoCaptureResult.msg */
00002 #ifndef PANO_ROS_MESSAGE_PANOCAPTURERESULT_H
00003 #define PANO_ROS_MESSAGE_PANOCAPTURERESULT_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 
00018 namespace pano_ros
00019 {
00020 template <class ContainerAllocator>
00021 struct PanoCaptureResult_ {
00022   typedef PanoCaptureResult_<ContainerAllocator> Type;
00023 
00024   PanoCaptureResult_()
00025   : pano_id(0)
00026   , n_captures(0)
00027   , bag_filename()
00028   {
00029   }
00030 
00031   PanoCaptureResult_(const ContainerAllocator& _alloc)
00032   : pano_id(0)
00033   , n_captures(0)
00034   , bag_filename(_alloc)
00035   {
00036   }
00037 
00038   typedef uint32_t _pano_id_type;
00039   uint32_t pano_id;
00040 
00041   typedef uint32_t _n_captures_type;
00042   uint32_t n_captures;
00043 
00044   typedef std::basic_string<char, std::char_traits<char>, typename ContainerAllocator::template rebind<char>::other >  _bag_filename_type;
00045   std::basic_string<char, std::char_traits<char>, typename ContainerAllocator::template rebind<char>::other >  bag_filename;
00046 
00047 
00048   typedef boost::shared_ptr< ::pano_ros::PanoCaptureResult_<ContainerAllocator> > Ptr;
00049   typedef boost::shared_ptr< ::pano_ros::PanoCaptureResult_<ContainerAllocator>  const> ConstPtr;
00050   boost::shared_ptr<std::map<std::string, std::string> > __connection_header;
00051 }; // struct PanoCaptureResult
00052 typedef  ::pano_ros::PanoCaptureResult_<std::allocator<void> > PanoCaptureResult;
00053 
00054 typedef boost::shared_ptr< ::pano_ros::PanoCaptureResult> PanoCaptureResultPtr;
00055 typedef boost::shared_ptr< ::pano_ros::PanoCaptureResult const> PanoCaptureResultConstPtr;
00056 
00057 
00058 template<typename ContainerAllocator>
00059 std::ostream& operator<<(std::ostream& s, const  ::pano_ros::PanoCaptureResult_<ContainerAllocator> & v)
00060 {
00061   ros::message_operations::Printer< ::pano_ros::PanoCaptureResult_<ContainerAllocator> >::stream(s, "", v);
00062   return s;}
00063 
00064 } // namespace pano_ros
00065 
00066 namespace ros
00067 {
00068 namespace message_traits
00069 {
00070 template<class ContainerAllocator> struct IsMessage< ::pano_ros::PanoCaptureResult_<ContainerAllocator> > : public TrueType {};
00071 template<class ContainerAllocator> struct IsMessage< ::pano_ros::PanoCaptureResult_<ContainerAllocator>  const> : public TrueType {};
00072 template<class ContainerAllocator>
00073 struct MD5Sum< ::pano_ros::PanoCaptureResult_<ContainerAllocator> > {
00074   static const char* value() 
00075   {
00076     return "7d1ff824dbed21bb16f220c4d06a45fb";
00077   }
00078 
00079   static const char* value(const  ::pano_ros::PanoCaptureResult_<ContainerAllocator> &) { return value(); } 
00080   static const uint64_t static_value1 = 0x7d1ff824dbed21bbULL;
00081   static const uint64_t static_value2 = 0x16f220c4d06a45fbULL;
00082 };
00083 
00084 template<class ContainerAllocator>
00085 struct DataType< ::pano_ros::PanoCaptureResult_<ContainerAllocator> > {
00086   static const char* value() 
00087   {
00088     return "pano_ros/PanoCaptureResult";
00089   }
00090 
00091   static const char* value(const  ::pano_ros::PanoCaptureResult_<ContainerAllocator> &) { return value(); } 
00092 };
00093 
00094 template<class ContainerAllocator>
00095 struct Definition< ::pano_ros::PanoCaptureResult_<ContainerAllocator> > {
00096   static const char* value() 
00097   {
00098     return "# ====== DO NOT MODIFY! AUTOGENERATED FROM AN ACTION DEFINITION ======\n\
00099 # Define the result\n\
00100 uint32 pano_id\n\
00101 uint32 n_captures\n\
00102 string bag_filename\n\
00103 \n\
00104 ";
00105   }
00106 
00107   static const char* value(const  ::pano_ros::PanoCaptureResult_<ContainerAllocator> &) { return value(); } 
00108 };
00109 
00110 } // namespace message_traits
00111 } // namespace ros
00112 
00113 namespace ros
00114 {
00115 namespace serialization
00116 {
00117 
00118 template<class ContainerAllocator> struct Serializer< ::pano_ros::PanoCaptureResult_<ContainerAllocator> >
00119 {
00120   template<typename Stream, typename T> inline static void allInOne(Stream& stream, T m)
00121   {
00122     stream.next(m.pano_id);
00123     stream.next(m.n_captures);
00124     stream.next(m.bag_filename);
00125   }
00126 
00127   ROS_DECLARE_ALLINONE_SERIALIZER;
00128 }; // struct PanoCaptureResult_
00129 } // namespace serialization
00130 } // namespace ros
00131 
00132 namespace ros
00133 {
00134 namespace message_operations
00135 {
00136 
00137 template<class ContainerAllocator>
00138 struct Printer< ::pano_ros::PanoCaptureResult_<ContainerAllocator> >
00139 {
00140   template<typename Stream> static void stream(Stream& s, const std::string& indent, const  ::pano_ros::PanoCaptureResult_<ContainerAllocator> & v) 
00141   {
00142     s << indent << "pano_id: ";
00143     Printer<uint32_t>::stream(s, indent + "  ", v.pano_id);
00144     s << indent << "n_captures: ";
00145     Printer<uint32_t>::stream(s, indent + "  ", v.n_captures);
00146     s << indent << "bag_filename: ";
00147     Printer<std::basic_string<char, std::char_traits<char>, typename ContainerAllocator::template rebind<char>::other > >::stream(s, indent + "  ", v.bag_filename);
00148   }
00149 };
00150 
00151 
00152 } // namespace message_operations
00153 } // namespace ros
00154 
00155 #endif // PANO_ROS_MESSAGE_PANOCAPTURERESULT_H
00156 


pano_ros
Author(s): Ethan Rublee, Ken Conley
autogenerated on Mon Oct 6 2014 08:06:11