add Ipv4 and Udp node capabilities, rework Copy methods to include an extra Node * argument

This commit is contained in:
Mathieu Lacage
2007-02-12 13:06:05 +01:00
parent 96d809c983
commit ea343befaf
22 changed files with 256 additions and 133 deletions

View File

@@ -62,5 +62,17 @@ Node::GetNetDeviceList() const
return 0;
}
Ipv4 *
Node::GetIpv4 (void) const
{
return 0;
}
Udp *
Node::GetUdp (void) const
{
return 0;
}
}//namespace ns3