BlinkFeedback.h
Go to the documentation of this file.
00001 /* Auto-generated by genmsg_cpp for file /home/rosbuild/hudson/workspace/doc-fuerte-alufr-humanoid_stacks/doc_stacks/2013-10-15_10-01-44.393682/nao_robot/nao_msgs/msg/BlinkFeedback.msg */
00002 #ifndef NAO_MSGS_MESSAGE_BLINKFEEDBACK_H
00003 #define NAO_MSGS_MESSAGE_BLINKFEEDBACK_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/ColorRGBA.h"
00018 
00019 namespace nao_msgs
00020 {
00021 template <class ContainerAllocator>
00022 struct BlinkFeedback_ {
00023   typedef BlinkFeedback_<ContainerAllocator> Type;
00024 
00025   BlinkFeedback_()
00026   : last_color()
00027   {
00028   }
00029 
00030   BlinkFeedback_(const ContainerAllocator& _alloc)
00031   : last_color(_alloc)
00032   {
00033   }
00034 
00035   typedef  ::std_msgs::ColorRGBA_<ContainerAllocator>  _last_color_type;
00036    ::std_msgs::ColorRGBA_<ContainerAllocator>  last_color;
00037 
00038 
00039   typedef boost::shared_ptr< ::nao_msgs::BlinkFeedback_<ContainerAllocator> > Ptr;
00040   typedef boost::shared_ptr< ::nao_msgs::BlinkFeedback_<ContainerAllocator>  const> ConstPtr;
00041   boost::shared_ptr<std::map<std::string, std::string> > __connection_header;
00042 }; // struct BlinkFeedback
00043 typedef  ::nao_msgs::BlinkFeedback_<std::allocator<void> > BlinkFeedback;
00044 
00045 typedef boost::shared_ptr< ::nao_msgs::BlinkFeedback> BlinkFeedbackPtr;
00046 typedef boost::shared_ptr< ::nao_msgs::BlinkFeedback const> BlinkFeedbackConstPtr;
00047 
00048 
00049 template<typename ContainerAllocator>
00050 std::ostream& operator<<(std::ostream& s, const  ::nao_msgs::BlinkFeedback_<ContainerAllocator> & v)
00051 {
00052   ros::message_operations::Printer< ::nao_msgs::BlinkFeedback_<ContainerAllocator> >::stream(s, "", v);
00053   return s;}
00054 
00055 } // namespace nao_msgs
00056 
00057 namespace ros
00058 {
00059 namespace message_traits
00060 {
00061 template<class ContainerAllocator> struct IsMessage< ::nao_msgs::BlinkFeedback_<ContainerAllocator> > : public TrueType {};
00062 template<class ContainerAllocator> struct IsMessage< ::nao_msgs::BlinkFeedback_<ContainerAllocator>  const> : public TrueType {};
00063 template<class ContainerAllocator>
00064 struct MD5Sum< ::nao_msgs::BlinkFeedback_<ContainerAllocator> > {
00065   static const char* value() 
00066   {
00067     return "6f1f94fb3eb06412264f6e0c5e72cfab";
00068   }
00069 
00070   static const char* value(const  ::nao_msgs::BlinkFeedback_<ContainerAllocator> &) { return value(); } 
00071   static const uint64_t static_value1 = 0x6f1f94fb3eb06412ULL;
00072   static const uint64_t static_value2 = 0x264f6e0c5e72cfabULL;
00073 };
00074 
00075 template<class ContainerAllocator>
00076 struct DataType< ::nao_msgs::BlinkFeedback_<ContainerAllocator> > {
00077   static const char* value() 
00078   {
00079     return "nao_msgs/BlinkFeedback";
00080   }
00081 
00082   static const char* value(const  ::nao_msgs::BlinkFeedback_<ContainerAllocator> &) { return value(); } 
00083 };
00084 
00085 template<class ContainerAllocator>
00086 struct Definition< ::nao_msgs::BlinkFeedback_<ContainerAllocator> > {
00087   static const char* value() 
00088   {
00089     return "# ====== DO NOT MODIFY! AUTOGENERATED FROM AN ACTION DEFINITION ======\n\
00090 std_msgs/ColorRGBA last_color\n\
00091 \n\
00092 \n\
00093 ================================================================================\n\
00094 MSG: std_msgs/ColorRGBA\n\
00095 float32 r\n\
00096 float32 g\n\
00097 float32 b\n\
00098 float32 a\n\
00099 \n\
00100 ";
00101   }
00102 
00103   static const char* value(const  ::nao_msgs::BlinkFeedback_<ContainerAllocator> &) { return value(); } 
00104 };
00105 
00106 template<class ContainerAllocator> struct IsFixedSize< ::nao_msgs::BlinkFeedback_<ContainerAllocator> > : public TrueType {};
00107 } // namespace message_traits
00108 } // namespace ros
00109 
00110 namespace ros
00111 {
00112 namespace serialization
00113 {
00114 
00115 template<class ContainerAllocator> struct Serializer< ::nao_msgs::BlinkFeedback_<ContainerAllocator> >
00116 {
00117   template<typename Stream, typename T> inline static void allInOne(Stream& stream, T m)
00118   {
00119     stream.next(m.last_color);
00120   }
00121 
00122   ROS_DECLARE_ALLINONE_SERIALIZER;
00123 }; // struct BlinkFeedback_
00124 } // namespace serialization
00125 } // namespace ros
00126 
00127 namespace ros
00128 {
00129 namespace message_operations
00130 {
00131 
00132 template<class ContainerAllocator>
00133 struct Printer< ::nao_msgs::BlinkFeedback_<ContainerAllocator> >
00134 {
00135   template<typename Stream> static void stream(Stream& s, const std::string& indent, const  ::nao_msgs::BlinkFeedback_<ContainerAllocator> & v) 
00136   {
00137     s << indent << "last_color: ";
00138 s << std::endl;
00139     Printer< ::std_msgs::ColorRGBA_<ContainerAllocator> >::stream(s, indent + "  ", v.last_color);
00140   }
00141 };
00142 
00143 
00144 } // namespace message_operations
00145 } // namespace ros
00146 
00147 #endif // NAO_MSGS_MESSAGE_BLINKFEEDBACK_H
00148 
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends


nao_msgs
Author(s): Armin Hornung, Stefan Osswald, Daniel Maier
autogenerated on Tue Oct 15 2013 10:05:22