// Generated by gencpp from file common_msgs/ConnectWifiRequest.msg // DO NOT EDIT! #ifndef COMMON_MSGS_MESSAGE_CONNECTWIFIREQUEST_H #define COMMON_MSGS_MESSAGE_CONNECTWIFIREQUEST_H #include <string> #include <vector> #include <memory> #include <ros/types.h> #include <ros/serialization.h> #include <ros/builtin_message_traits.h> #include <ros/message_operations.h> namespace common_msgs { template <class ContainerAllocator> struct ConnectWifiRequest_ { typedef ConnectWifiRequest_<ContainerAllocator> Type; ConnectWifiRequest_() : ssid() , password() { } ConnectWifiRequest_(const ContainerAllocator& _alloc) : ssid(_alloc) , password(_alloc) { (void)_alloc; } typedef std::basic_string<char, std::char_traits<char>, typename std::allocator_traits<ContainerAllocator>::template rebind_alloc<char>> _ssid_type; _ssid_type ssid; typedef std::basic_string<char, std::char_traits<char>, typename std::allocator_traits<ContainerAllocator>::template rebind_alloc<char>> _password_type; _password_type password; typedef boost::shared_ptr< ::common_msgs::ConnectWifiRequest_<ContainerAllocator> > Ptr; typedef boost::shared_ptr< ::common_msgs::ConnectWifiRequest_<ContainerAllocator> const> ConstPtr; }; // struct ConnectWifiRequest_ typedef ::common_msgs::ConnectWifiRequest_<std::allocator<void> > ConnectWifiRequest; typedef boost::shared_ptr< ::common_msgs::ConnectWifiRequest > ConnectWifiRequestPtr; typedef boost::shared_ptr< ::common_msgs::ConnectWifiRequest const> ConnectWifiRequestConstPtr; // constants requiring out of line definition template<typename ContainerAllocator> std::ostream& operator<<(std::ostream& s, const ::common_msgs::ConnectWifiRequest_<ContainerAllocator> & v) { ros::message_operations::Printer< ::common_msgs::ConnectWifiRequest_<ContainerAllocator> >::stream(s, "", v); return s; } template<typename ContainerAllocator1, typename ContainerAllocator2> bool operator==(const ::common_msgs::ConnectWifiRequest_<ContainerAllocator1> & lhs, const ::common_msgs::ConnectWifiRequest_<ContainerAllocator2> & rhs) { return lhs.ssid == rhs.ssid && lhs.password == rhs.password; } template<typename ContainerAllocator1, typename ContainerAllocator2> bool operator!=(const ::common_msgs::ConnectWifiRequest_<ContainerAllocator1> & lhs, const ::common_msgs::ConnectWifiRequest_<ContainerAllocator2> & rhs) { return !(lhs == rhs); } } // namespace common_msgs namespace ros { namespace message_traits { template <class ContainerAllocator> struct IsFixedSize< ::common_msgs::ConnectWifiRequest_<ContainerAllocator> > : FalseType { }; template <class ContainerAllocator> struct IsFixedSize< ::common_msgs::ConnectWifiRequest_<ContainerAllocator> const> : FalseType { }; template <class ContainerAllocator> struct IsMessage< ::common_msgs::ConnectWifiRequest_<ContainerAllocator> > : TrueType { }; template <class ContainerAllocator> struct IsMessage< ::common_msgs::ConnectWifiRequest_<ContainerAllocator> const> : TrueType { }; template <class ContainerAllocator> struct HasHeader< ::common_msgs::ConnectWifiRequest_<ContainerAllocator> > : FalseType { }; template <class ContainerAllocator> struct HasHeader< ::common_msgs::ConnectWifiRequest_<ContainerAllocator> const> : FalseType { }; template<class ContainerAllocator> struct MD5Sum< ::common_msgs::ConnectWifiRequest_<ContainerAllocator> > { static const char* value() { return "be0ef5217dea86e981988b8b0821adc4"; } static const char* value(const ::common_msgs::ConnectWifiRequest_<ContainerAllocator>&) { return value(); } static const uint64_t static_value1 = 0xbe0ef5217dea86e9ULL; static const uint64_t static_value2 = 0x81988b8b0821adc4ULL; }; template<class ContainerAllocator> struct DataType< ::common_msgs::ConnectWifiRequest_<ContainerAllocator> > { static const char* value() { return "common_msgs/ConnectWifiRequest"; } static const char* value(const ::common_msgs::ConnectWifiRequest_<ContainerAllocator>&) { return value(); } }; template<class ContainerAllocator> struct Definition< ::common_msgs::ConnectWifiRequest_<ContainerAllocator> > { static const char* value() { return "string ssid\n" "string password\n" ; } static const char* value(const ::common_msgs::ConnectWifiRequest_<ContainerAllocator>&) { return value(); } }; } // namespace message_traits } // namespace ros namespace ros { namespace serialization { template<class ContainerAllocator> struct Serializer< ::common_msgs::ConnectWifiRequest_<ContainerAllocator> > { template<typename Stream, typename T> inline static void allInOne(Stream& stream, T m) { stream.next(m.ssid); stream.next(m.password); } ROS_DECLARE_ALLINONE_SERIALIZER }; // struct ConnectWifiRequest_ } // namespace serialization } // namespace ros namespace ros { namespace message_operations { template<class ContainerAllocator> struct Printer< ::common_msgs::ConnectWifiRequest_<ContainerAllocator> > { template<typename Stream> static void stream(Stream& s, const std::string& indent, const ::common_msgs::ConnectWifiRequest_<ContainerAllocator>& v) { s << indent << "ssid: "; Printer<std::basic_string<char, std::char_traits<char>, typename std::allocator_traits<ContainerAllocator>::template rebind_alloc<char>>>::stream(s, indent + " ", v.ssid); s << indent << "password: "; Printer<std::basic_string<char, std::char_traits<char>, typename std::allocator_traits<ContainerAllocator>::template rebind_alloc<char>>>::stream(s, indent + " ", v.password); } }; } // namespace message_operations } // namespace ros #endif // COMMON_MSGS_MESSAGE_CONNECTWIFIREQUEST_H