Missing SetGroupName in two classes

This commit is contained in:
Tommaso Pecorella
2015-09-11 10:52:44 +02:00
parent bad3a40712
commit e17ad5fbd0
2 changed files with 2 additions and 0 deletions

View File

@@ -53,6 +53,7 @@ GetObjectIid (void)
NS_LOG_FUNCTION_NOARGS ();
TypeId tid = TypeId ("ns3::ObjectBase");
tid.SetParent (tid);
tid.SetGroupName ("Core");
return tid;
}

View File

@@ -41,6 +41,7 @@ Ipv4Interface::GetTypeId (void)
{
static TypeId tid = TypeId ("ns3::Ipv4Interface")
.SetParent<Object> ()
.SetGroupName ("Internet")
.AddAttribute ("ArpCache",
"The arp cache for this ipv4 interface",
PointerValue (0),