# HG changeset patch # User Tommaso Pecorella # Date 1441961564 -7200 # Node ID e8634b0101f7be773074f6e42587fa4a6d0563ba # Parent bb52e7eaaf3393b3a47972f9938585560f1b6d24 Missing SetGroupName in two classes diff -r bb52e7eaaf33 -r e8634b0101f7 src/core/model/object-base.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; } diff -r bb52e7eaaf33 -r e8634b0101f7 src/internet/model/ipv4-interface.cc --- 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 () + .SetGroupName ("Internet") .AddAttribute ("ArpCache", "The arp cache for this ipv4 interface", PointerValue (0),