Go to the documentation of this file.00001
00002 #ifndef FLIRTLIB_ROS_MESSAGE_VECTOR_H
00003 #define FLIRTLIB_ROS_MESSAGE_VECTOR_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 flirtlib_ros
00019 {
00020 template <class ContainerAllocator>
00021 struct Vector_ {
00022 typedef Vector_<ContainerAllocator> Type;
00023
00024 Vector_()
00025 : vec()
00026 {
00027 }
00028
00029 Vector_(const ContainerAllocator& _alloc)
00030 : vec(_alloc)
00031 {
00032 }
00033
00034 typedef std::vector<double, typename ContainerAllocator::template rebind<double>::other > _vec_type;
00035 std::vector<double, typename ContainerAllocator::template rebind<double>::other > vec;
00036
00037
00038 typedef boost::shared_ptr< ::flirtlib_ros::Vector_<ContainerAllocator> > Ptr;
00039 typedef boost::shared_ptr< ::flirtlib_ros::Vector_<ContainerAllocator> const> ConstPtr;
00040 boost::shared_ptr<std::map<std::string, std::string> > __connection_header;
00041 };
00042 typedef ::flirtlib_ros::Vector_<std::allocator<void> > Vector;
00043
00044 typedef boost::shared_ptr< ::flirtlib_ros::Vector> VectorPtr;
00045 typedef boost::shared_ptr< ::flirtlib_ros::Vector const> VectorConstPtr;
00046
00047
00048 template<typename ContainerAllocator>
00049 std::ostream& operator<<(std::ostream& s, const ::flirtlib_ros::Vector_<ContainerAllocator> & v)
00050 {
00051 ros::message_operations::Printer< ::flirtlib_ros::Vector_<ContainerAllocator> >::stream(s, "", v);
00052 return s;}
00053
00054 }
00055
00056 namespace ros
00057 {
00058 namespace message_traits
00059 {
00060 template<class ContainerAllocator> struct IsMessage< ::flirtlib_ros::Vector_<ContainerAllocator> > : public TrueType {};
00061 template<class ContainerAllocator> struct IsMessage< ::flirtlib_ros::Vector_<ContainerAllocator> const> : public TrueType {};
00062 template<class ContainerAllocator>
00063 struct MD5Sum< ::flirtlib_ros::Vector_<ContainerAllocator> > {
00064 static const char* value()
00065 {
00066 return "d7cb80c523ff12d27e3ad06be93d3a09";
00067 }
00068
00069 static const char* value(const ::flirtlib_ros::Vector_<ContainerAllocator> &) { return value(); }
00070 static const uint64_t static_value1 = 0xd7cb80c523ff12d2ULL;
00071 static const uint64_t static_value2 = 0x7e3ad06be93d3a09ULL;
00072 };
00073
00074 template<class ContainerAllocator>
00075 struct DataType< ::flirtlib_ros::Vector_<ContainerAllocator> > {
00076 static const char* value()
00077 {
00078 return "flirtlib_ros/Vector";
00079 }
00080
00081 static const char* value(const ::flirtlib_ros::Vector_<ContainerAllocator> &) { return value(); }
00082 };
00083
00084 template<class ContainerAllocator>
00085 struct Definition< ::flirtlib_ros::Vector_<ContainerAllocator> > {
00086 static const char* value()
00087 {
00088 return "# Vector message type used by a bunch of the flirtlib messages\n\
00089 \n\
00090 float64[] vec\n\
00091 ";
00092 }
00093
00094 static const char* value(const ::flirtlib_ros::Vector_<ContainerAllocator> &) { return value(); }
00095 };
00096
00097 }
00098 }
00099
00100 namespace ros
00101 {
00102 namespace serialization
00103 {
00104
00105 template<class ContainerAllocator> struct Serializer< ::flirtlib_ros::Vector_<ContainerAllocator> >
00106 {
00107 template<typename Stream, typename T> inline static void allInOne(Stream& stream, T m)
00108 {
00109 stream.next(m.vec);
00110 }
00111
00112 ROS_DECLARE_ALLINONE_SERIALIZER;
00113 };
00114 }
00115 }
00116
00117 namespace ros
00118 {
00119 namespace message_operations
00120 {
00121
00122 template<class ContainerAllocator>
00123 struct Printer< ::flirtlib_ros::Vector_<ContainerAllocator> >
00124 {
00125 template<typename Stream> static void stream(Stream& s, const std::string& indent, const ::flirtlib_ros::Vector_<ContainerAllocator> & v)
00126 {
00127 s << indent << "vec[]" << std::endl;
00128 for (size_t i = 0; i < v.vec.size(); ++i)
00129 {
00130 s << indent << " vec[" << i << "]: ";
00131 Printer<double>::stream(s, indent + " ", v.vec[i]);
00132 }
00133 }
00134 };
00135
00136
00137 }
00138 }
00139
00140 #endif // FLIRTLIB_ROS_MESSAGE_VECTOR_H
00141