src/wifi/model/ssid.cc
changeset 10483 e3a02ed14587
parent 7385 10beb0e53130
child 11450 9f4ae69f12b7
--- a/src/wifi/model/ssid.cc	Mon Dec 09 09:28:17 2013 -0800
+++ b/src/wifi/model/ssid.cc	Tue Dec 10 10:48:51 2013 -0500
@@ -129,6 +129,13 @@
 
 ATTRIBUTE_HELPER_CPP (Ssid);
 
+/**
+ * Serialize SSID to the given ostream
+ *
+ * \param os
+ * \param ssid
+ * \return std::ostream
+ */
 std::ostream &
 operator << (std::ostream &os, const Ssid &ssid)
 {
@@ -136,6 +143,13 @@
   return os;
 }
 
+/**
+ * Serialize from the given istream to this SSID.
+ *
+ * \param is
+ * \param ssid
+ * \return std::istream
+ */
 std::istream &operator >> (std::istream &is, Ssid &ssid)
 {
   std::string str;