rename NsUnknown to Interface and NsUnknownManager to ComponentManager

This commit is contained in:
Mathieu Lacage
2007-05-11 18:52:05 +02:00
parent 6495c220a9
commit e22e6188cf
21 changed files with 156 additions and 156 deletions

View File

@@ -32,7 +32,7 @@ namespace ns3{
const Iid Node::iid ("Node");
Node::Node()
: NsUnknown (Node::iid),
: Interface (Node::iid),
m_id(0),
m_sid(0)
{
@@ -40,7 +40,7 @@ Node::Node()
}
Node::Node(uint32_t sid)
: NsUnknown (Node::iid),
: Interface (Node::iid),
m_id(0),
m_sid(sid)
{
@@ -98,7 +98,7 @@ void Node::DoDispose()
*i = 0;
}
m_devices.clear ();
NsUnknown::DoDispose ();
Interface::DoDispose ();
}
}//namespace ns3