add private operator = to disable it
authorMathieu Lacage <mathieu.lacage@sophia.inria.fr>
Thu Oct 02 17:05:16 2008 +0200 (16 months ago)
changeset 3725c27c944e2ec4
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
     1.1 --- a/src/devices/wifi/adhoc-wifi-mac.h	Thu Oct 02 15:04:28 2008 +0200
     1.2 +++ b/src/devices/wifi/adhoc-wifi-mac.h	Thu Oct 02 17:05:16 2008 +0200
     1.3 @@ -85,6 +85,7 @@
     1.4    /* invoked by the MacLows. */
     1.5    void ForwardUp (Ptr<Packet> packet, WifiMacHeader const*hdr);
     1.6    AdhocWifiMac (const AdhocWifiMac & ctor_arg);
     1.7 +  AdhocWifiMac &operator = (const AdhocWifiMac &o);
     1.8    Mac48Address GetBssid (void) const;
     1.9  
    1.10    Ptr<DcaTxop> m_dca;
     2.1 --- a/src/devices/wifi/nqap-wifi-mac.h	Thu Oct 02 15:04:28 2008 +0200
     2.2 +++ b/src/devices/wifi/nqap-wifi-mac.h	Thu Oct 02 17:05:16 2008 +0200
     2.3 @@ -112,6 +112,7 @@
     2.4    bool GetBeaconGeneration (void) const;
     2.5    virtual void DoDispose (void);
     2.6    NqapWifiMac (const NqapWifiMac & ctor_arg);
     2.7 +  NqapWifiMac &operator = (const NqapWifiMac &o);
     2.8  
     2.9    Ptr<DcaTxop> m_dca;
    2.10    Ptr<DcaTxop> m_beaconDca;
     3.1 --- a/src/devices/wifi/nqsta-wifi-mac.h	Thu Oct 02 15:04:28 2008 +0200
     3.2 +++ b/src/devices/wifi/nqsta-wifi-mac.h	Thu Oct 02 17:05:16 2008 +0200
     3.3 @@ -129,6 +129,7 @@
     3.4    Mac48Address GetBssid (void) const;
     3.5    virtual void DoDispose (void);
     3.6    NqstaWifiMac (const NqstaWifiMac & ctor_arg);
     3.7 +  NqstaWifiMac &operator = (const NqstaWifiMac & ctor_arg);
     3.8  
     3.9    enum {
    3.10      ASSOCIATED,