src/helper/mesh-interface-helper.h
changeset 5152 f14eff131d13
parent 5138 b193dca2b479
child 5153 37f7a0d8eae5
--- a/src/helper/mesh-interface-helper.h	Wed Aug 12 20:49:39 2009 +0400
+++ b/src/helper/mesh-interface-helper.h	Tue Aug 18 13:25:36 2009 +0400
@@ -52,17 +52,6 @@
                 std::string n6 = "", const AttributeValue &v6 = EmptyAttributeValue (),
                 std::string n7 = "", const AttributeValue &v7 = EmptyAttributeValue ());
   /**
-   * \param ac is access class of the queue to be adjusted
-   * \param type the type of ns3::WifiMac to create.
-   * \param n%d the name of the attribute to set
-   * \param v%d the value of the attribute to set
-   */
-  void SetQueueParameters (AccessClass ac,
-      std::string n0 = "", const AttributeValue &v0 = EmptyAttributeValue (),
-      std::string n1 = "", const AttributeValue &v1 = EmptyAttributeValue (),
-      std::string n2 = "", const AttributeValue &v2 = EmptyAttributeValue (),
-      std::string n3 = "", const AttributeValue &v3 = EmptyAttributeValue ());
-  /**
    * \param type the type of ns3::WifiRemoteStationManager to create.
    * \param n%d the name of the attribute to set
    * \param v%d the value of the attribute to set
@@ -90,24 +79,14 @@
   static void Report (const Ptr<WifiNetDevice>& device, std::ostream& os);
   static void ResetStats (const Ptr<WifiNetDevice>& device);
 private:
+
   /**
    * \returns a newly-created MAC object.
    *
    * This method implements the pure virtual method defined in \ref ns3::WifiMacHelper.
    */
   Ptr<WifiMac> Create (void) const;
-  struct QUEUE
-    {
-      ObjectFactory dcaTxop;
-      AccessClass ac;
-    };
   ObjectFactory m_mac;
-  /**
-   * \brief array of object factories, which generate queues
-   * \attention Queues shall be sorte starting from the queue with
-   * higher priority
-   */
-  std::vector<QUEUE> m_queues;
   ObjectFactory m_stationManager;
 };