SetGroupName for flow-monitor module

This commit is contained in:
Tommaso Pecorella
2015-03-29 11:30:06 +02:00
parent cce8378466
commit d503c92234
3 changed files with 3 additions and 0 deletions

View File

@@ -41,6 +41,7 @@ FlowMonitor::GetTypeId (void)
{
static TypeId tid = TypeId ("ns3::FlowMonitor")
.SetParent<Object> ()
.SetGroupName ("FlowMonitor")
.AddConstructor<FlowMonitor> ()
.AddAttribute ("MaxPerHopDelay", ("The maximum per-hop delay that should be considered. "
"Packets still not received after this delay are to be considered lost."),

View File

@@ -108,6 +108,7 @@ Ipv4FlowProbeTag::GetTypeId (void)
{
static TypeId tid = TypeId ("ns3::Ipv4FlowProbeTag")
.SetParent<Tag> ()
.SetGroupName ("FlowMonitor")
.AddConstructor<Ipv4FlowProbeTag> ()
;
return tid;

View File

@@ -109,6 +109,7 @@ Ipv6FlowProbeTag::GetTypeId (void)
{
static TypeId tid = TypeId ("ns3::Ipv6FlowProbeTag")
.SetParent<Tag> ()
.SetGroupName ("FlowMonitor")
.AddConstructor<Ipv6FlowProbeTag> ()
;
return tid;