Missing SetGroupName in two classes ns-3.24
authorTommaso Pecorella <tommaso.pecorella@unifi.it>
Fri, 11 Sep 2015 10:52:44 +0200
changeset 11666 e8634b0101f7
parent 11665 bb52e7eaaf33
child 11667 3dac5b408933
Missing SetGroupName in two classes
src/core/model/object-base.cc
src/internet/model/ipv4-interface.cc
--- a/src/core/model/object-base.cc	Mon Sep 14 13:34:07 2015 -0700
+++ b/src/core/model/object-base.cc	Fri Sep 11 10:52:44 2015 +0200
@@ -53,6 +53,7 @@
   NS_LOG_FUNCTION_NOARGS ();
   TypeId tid = TypeId ("ns3::ObjectBase");
   tid.SetParent (tid);
+  tid.SetGroupName ("Core");
   return tid;
 }
 
--- a/src/internet/model/ipv4-interface.cc	Mon Sep 14 13:34:07 2015 -0700
+++ b/src/internet/model/ipv4-interface.cc	Fri Sep 11 10:52:44 2015 +0200
@@ -41,6 +41,7 @@
 {
   static TypeId tid = TypeId ("ns3::Ipv4Interface")
     .SetParent<Object> ()
+    .SetGroupName ("Internet")
     .AddAttribute ("ArpCache",
                    "The arp cache for this ipv4 interface",
                    PointerValue (0),