Go to the documentation of this file.00001
00002 #ifndef WPA_SUPPLICANT_NODE_MESSAGE_ASSOCIATEFEEDBACK_H
00003 #define WPA_SUPPLICANT_NODE_MESSAGE_ASSOCIATEFEEDBACK_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 "wpa_supplicant_node/Bss.h"
00018
00019 namespace wpa_supplicant_node
00020 {
00021 template <class ContainerAllocator>
00022 struct AssociateFeedback_ {
00023 typedef AssociateFeedback_<ContainerAllocator> Type;
00024
00025 AssociateFeedback_()
00026 : associated(false)
00027 , bss()
00028 {
00029 }
00030
00031 AssociateFeedback_(const ContainerAllocator& _alloc)
00032 : associated(false)
00033 , bss(_alloc)
00034 {
00035 }
00036
00037 typedef uint8_t _associated_type;
00038 uint8_t associated;
00039
00040 typedef ::wpa_supplicant_node::Bss_<ContainerAllocator> _bss_type;
00041 ::wpa_supplicant_node::Bss_<ContainerAllocator> bss;
00042
00043
00044 typedef boost::shared_ptr< ::wpa_supplicant_node::AssociateFeedback_<ContainerAllocator> > Ptr;
00045 typedef boost::shared_ptr< ::wpa_supplicant_node::AssociateFeedback_<ContainerAllocator> const> ConstPtr;
00046 boost::shared_ptr<std::map<std::string, std::string> > __connection_header;
00047 };
00048 typedef ::wpa_supplicant_node::AssociateFeedback_<std::allocator<void> > AssociateFeedback;
00049
00050 typedef boost::shared_ptr< ::wpa_supplicant_node::AssociateFeedback> AssociateFeedbackPtr;
00051 typedef boost::shared_ptr< ::wpa_supplicant_node::AssociateFeedback const> AssociateFeedbackConstPtr;
00052
00053
00054 template<typename ContainerAllocator>
00055 std::ostream& operator<<(std::ostream& s, const ::wpa_supplicant_node::AssociateFeedback_<ContainerAllocator> & v)
00056 {
00057 ros::message_operations::Printer< ::wpa_supplicant_node::AssociateFeedback_<ContainerAllocator> >::stream(s, "", v);
00058 return s;}
00059
00060 }
00061
00062 namespace ros
00063 {
00064 namespace message_traits
00065 {
00066 template<class ContainerAllocator> struct IsMessage< ::wpa_supplicant_node::AssociateFeedback_<ContainerAllocator> > : public TrueType {};
00067 template<class ContainerAllocator> struct IsMessage< ::wpa_supplicant_node::AssociateFeedback_<ContainerAllocator> const> : public TrueType {};
00068 template<class ContainerAllocator>
00069 struct MD5Sum< ::wpa_supplicant_node::AssociateFeedback_<ContainerAllocator> > {
00070 static const char* value()
00071 {
00072 return "78ebac03d392e2d79e861554bdd8b7a7";
00073 }
00074
00075 static const char* value(const ::wpa_supplicant_node::AssociateFeedback_<ContainerAllocator> &) { return value(); }
00076 static const uint64_t static_value1 = 0x78ebac03d392e2d7ULL;
00077 static const uint64_t static_value2 = 0x9e861554bdd8b7a7ULL;
00078 };
00079
00080 template<class ContainerAllocator>
00081 struct DataType< ::wpa_supplicant_node::AssociateFeedback_<ContainerAllocator> > {
00082 static const char* value()
00083 {
00084 return "wpa_supplicant_node/AssociateFeedback";
00085 }
00086
00087 static const char* value(const ::wpa_supplicant_node::AssociateFeedback_<ContainerAllocator> &) { return value(); }
00088 };
00089
00090 template<class ContainerAllocator>
00091 struct Definition< ::wpa_supplicant_node::AssociateFeedback_<ContainerAllocator> > {
00092 static const char* value()
00093 {
00094 return "# ====== DO NOT MODIFY! AUTOGENERATED FROM AN ACTION DEFINITION ======\n\
00095 bool associated\n\
00096 Bss bss\n\
00097 \n\
00098 \n\
00099 ================================================================================\n\
00100 MSG: wpa_supplicant_node/Bss\n\
00101 time stamp\n\
00102 string ssid\n\
00103 uint8[6] bssid\n\
00104 int32 frequency # In MHz\n\
00105 int16 beacon_interval\n\
00106 int16 capabilities\n\
00107 int32 quality\n\
00108 int32 noise\n\
00109 int32 level\n\
00110 SecurityProperties wpa\n\
00111 SecurityProperties rsn\n\
00112 \n\
00113 #InformationElement []ies\n\
00114 #InformationElement []beacon_ies\n\
00115 # flags\n\
00116 # tsf\n\
00117 # age\n\
00118 \n\
00119 ================================================================================\n\
00120 MSG: wpa_supplicant_node/SecurityProperties\n\
00121 string[] key_mgmt\n\
00122 string[] group\n\
00123 string[] pairwise\n\
00124 \n\
00125 ";
00126 }
00127
00128 static const char* value(const ::wpa_supplicant_node::AssociateFeedback_<ContainerAllocator> &) { return value(); }
00129 };
00130
00131 }
00132 }
00133
00134 namespace ros
00135 {
00136 namespace serialization
00137 {
00138
00139 template<class ContainerAllocator> struct Serializer< ::wpa_supplicant_node::AssociateFeedback_<ContainerAllocator> >
00140 {
00141 template<typename Stream, typename T> inline static void allInOne(Stream& stream, T m)
00142 {
00143 stream.next(m.associated);
00144 stream.next(m.bss);
00145 }
00146
00147 ROS_DECLARE_ALLINONE_SERIALIZER;
00148 };
00149 }
00150 }
00151
00152 namespace ros
00153 {
00154 namespace message_operations
00155 {
00156
00157 template<class ContainerAllocator>
00158 struct Printer< ::wpa_supplicant_node::AssociateFeedback_<ContainerAllocator> >
00159 {
00160 template<typename Stream> static void stream(Stream& s, const std::string& indent, const ::wpa_supplicant_node::AssociateFeedback_<ContainerAllocator> & v)
00161 {
00162 s << indent << "associated: ";
00163 Printer<uint8_t>::stream(s, indent + " ", v.associated);
00164 s << indent << "bss: ";
00165 s << std::endl;
00166 Printer< ::wpa_supplicant_node::Bss_<ContainerAllocator> >::stream(s, indent + " ", v.bss);
00167 }
00168 };
00169
00170
00171 }
00172 }
00173
00174 #endif // WPA_SUPPLICANT_NODE_MESSAGE_ASSOCIATEFEEDBACK_H
00175