src/devices/wifi/wifi-net-device.cc
changeset 2271 85724b1cbb1a
parent 2268 0e57ac711220
child 2273 0bfe240ec168
--- a/src/devices/wifi/wifi-net-device.cc	Wed Dec 12 13:36:16 2007 +0100
+++ b/src/devices/wifi/wifi-net-device.cc	Thu Dec 13 08:39:08 2007 +0100
@@ -40,6 +40,7 @@
 #include "aarf-mac-stations.h"
 #include "ideal-mac-stations.h"
 #include "cr-mac-stations.h"
+#include "onoe-mac-stations.h"
 
 namespace ns3 {
 
@@ -211,6 +212,9 @@
       }
     m_stations = ideal;
   } break;
+  case WifiDefaultParameters::ONOE: {
+    m_stations = new OnoeMacStations (m_phy->GetMode (0));
+  } break;
   default:
     // NOTREACHED
     NS_ASSERT (false);