mark copy constructor and assignment operator as private to avoid exporting wifi-mac-queue.h for python bindings
authorMathieu Lacage <mathieu.lacage@sophia.inria.fr>
Fri, 24 Apr 2009 09:57:16 +0200
changeset 4405 938c96b15fa7
parent 4404 e10005ac0701
child 4406 39f119de91ef
mark copy constructor and assignment operator as private to avoid exporting wifi-mac-queue.h for python bindings
src/devices/wifi/dca-txop.h
--- a/src/devices/wifi/dca-txop.h	Fri Apr 24 09:16:28 2009 +0200
+++ b/src/devices/wifi/dca-txop.h	Fri Apr 24 09:57:16 2009 +0200
@@ -115,6 +115,9 @@
   friend class TransmissionListener;
   friend class WifiRemoteStation;
 
+  DcaTxop &operator = (const DcaTxop &);
+  DcaTxop (const DcaTxop &o);
+
   // Inherited from ns3::Object
   Ptr<MacLow> Low (void);