make sure python does not wrap copy constructor and assignment operator

This commit is contained in:
Mathieu Lacage
2009-08-31 13:01:48 +02:00
parent 43ea214b4f
commit 49a41d2925

View File

@@ -84,6 +84,8 @@ protected:
virtual void NotifyNewAggregate ();
private:
typedef std::list<Ptr<ArpCache> > CacheList;
ArpL3Protocol (const ArpL3Protocol &o);
ArpL3Protocol &operator = (const ArpL3Protocol &o);
Ptr<ArpCache> FindCache (Ptr<NetDevice> device);
void SendArpRequest (Ptr<const ArpCache>cache, Ipv4Address to);
void SendArpReply (Ptr<const ArpCache> cache, Ipv4Address myIp, Ipv4Address toIp, Address toMac);