add private operator = to disable it
authorMathieu Lacage <mathieu.lacage@sophia.inria.fr>
Thu, 02 Oct 2008 17:05:16 +0200
changeset 3725 c27c944e2ec4
parent 3724 53be615ed881
child 3727 27880cdd0019
add private operator = to disable it
src/devices/wifi/adhoc-wifi-mac.h
src/devices/wifi/nqap-wifi-mac.h
src/devices/wifi/nqsta-wifi-mac.h
--- a/src/devices/wifi/adhoc-wifi-mac.h	Thu Oct 02 15:04:28 2008 +0200
+++ b/src/devices/wifi/adhoc-wifi-mac.h	Thu Oct 02 17:05:16 2008 +0200
@@ -85,6 +85,7 @@
   /* invoked by the MacLows. */
   void ForwardUp (Ptr<Packet> packet, WifiMacHeader const*hdr);
   AdhocWifiMac (const AdhocWifiMac & ctor_arg);
+  AdhocWifiMac &operator = (const AdhocWifiMac &o);
   Mac48Address GetBssid (void) const;
 
   Ptr<DcaTxop> m_dca;
--- a/src/devices/wifi/nqap-wifi-mac.h	Thu Oct 02 15:04:28 2008 +0200
+++ b/src/devices/wifi/nqap-wifi-mac.h	Thu Oct 02 17:05:16 2008 +0200
@@ -112,6 +112,7 @@
   bool GetBeaconGeneration (void) const;
   virtual void DoDispose (void);
   NqapWifiMac (const NqapWifiMac & ctor_arg);
+  NqapWifiMac &operator = (const NqapWifiMac &o);
 
   Ptr<DcaTxop> m_dca;
   Ptr<DcaTxop> m_beaconDca;
--- a/src/devices/wifi/nqsta-wifi-mac.h	Thu Oct 02 15:04:28 2008 +0200
+++ b/src/devices/wifi/nqsta-wifi-mac.h	Thu Oct 02 17:05:16 2008 +0200
@@ -129,6 +129,7 @@
   Mac48Address GetBssid (void) const;
   virtual void DoDispose (void);
   NqstaWifiMac (const NqstaWifiMac & ctor_arg);
+  NqstaWifiMac &operator = (const NqstaWifiMac & ctor_arg);
 
   enum {
     ASSOCIATED,