src/wifi/model/regular-wifi-mac.h
changeset 11628 243b71de25a0
parent 11450 9f4ae69f12b7
--- a/src/wifi/model/regular-wifi-mac.h	Wed Sep 02 16:37:05 2015 -0700
+++ b/src/wifi/model/regular-wifi-mac.h	Thu Sep 03 22:16:49 2015 +0200
@@ -413,8 +413,7 @@
 
   /**
     * This Boolean is set \c true iff this WifiMac is to model
-    * 802.11n. It is exposed through the
-    * attribute system.
+    * 802.11n. It is exposed through the attribute system.
     *
     * At the moment, this flag is the sole selection between HT and
     * non-HT operation for the STA (whether IBSS, AP, or
@@ -433,12 +432,30 @@
    */
   void SetHtSupported (bool enable);
   /**
-   * Return whether the device supports QoS.
+   * Return whether the device supports HT.
    *
    * \return true if HT is supported, false otherwise
    */
   bool GetHtSupported () const;
 
+  /**
+  * This Boolean is set \c true iff this WifiMac is to model
+  * 802.11ac. It is exposed through the attribute system.
+  */
+  bool m_vhtSupported;
+  /**
+   * Enable or disable HT support for the device.
+   *
+   * \param enable whether VHT is supported
+   */
+  void SetVhtSupported (bool enable);
+  /**
+   * Return whether the device supports VHT.
+   *
+   * \return true if VHT is supported, false otherwise
+   */
+  bool GetVhtSupported () const;
+
 
 private:
   RegularWifiMac (const RegularWifiMac &);