make sure python does not wrap copy constructor and assignment operator
authorMathieu Lacage <mathieu.lacage@sophia.inria.fr>
Mon Aug 31 13:01:48 2009 +0200 (5 months ago)
changeset 474396781f226405
parent 4742 f22beb219798
child 4744 cd473a5cf99c
make sure python does not wrap copy constructor and assignment operator
src/internet-stack/arp-l3-protocol.h
     1.1 --- a/src/internet-stack/arp-l3-protocol.h	Mon Aug 31 11:31:32 2009 +0100
     1.2 +++ b/src/internet-stack/arp-l3-protocol.h	Mon Aug 31 13:01:48 2009 +0200
     1.3 @@ -84,6 +84,8 @@
     1.4    virtual void NotifyNewAggregate ();
     1.5  private:
     1.6    typedef std::list<Ptr<ArpCache> > CacheList;
     1.7 +  ArpL3Protocol (const ArpL3Protocol &o);
     1.8 +  ArpL3Protocol &operator = (const ArpL3Protocol &o);
     1.9    Ptr<ArpCache> FindCache (Ptr<NetDevice> device);
    1.10    void SendArpRequest (Ptr<const ArpCache>cache, Ipv4Address to);
    1.11    void SendArpReply (Ptr<const ArpCache> cache, Ipv4Address myIp, Ipv4Address toIp, Address toMac);