SetGroupName for mpi module

This commit is contained in:
Tom Henderson
2015-05-05 19:10:44 -07:00
parent 00676af822
commit 0970b68bc9
5 changed files with 5 additions and 0 deletions

View File

@@ -83,6 +83,7 @@ DistributedSimulatorImpl::GetTypeId (void)
{
static TypeId tid = TypeId ("ns3::DistributedSimulatorImpl")
.SetParent<Object> ()
.SetGroupName ("Mpi")
.AddConstructor<DistributedSimulatorImpl> ()
;
return tid;

View File

@@ -93,6 +93,7 @@ GrantedTimeWindowMpiInterface::GetTypeId (void)
{
static TypeId tid = TypeId ("ns3::GrantedTimeWindowMpiInterface")
.SetParent<Object> ()
.SetGroupName ("Mpi")
;
return tid;
}

View File

@@ -25,6 +25,7 @@ MpiReceiver::GetTypeId (void)
{
static TypeId tid = TypeId ("ns3::MpiReceiver")
.SetParent<Object> ()
.SetGroupName ("Mpi")
.AddConstructor <MpiReceiver> ();
return tid;
}

View File

@@ -55,6 +55,7 @@ NullMessageSimulatorImpl::GetTypeId (void)
{
static TypeId tid = TypeId ("ns3::NullMessageSimulatorImpl")
.SetParent<Object> ()
.SetGroupName ("Mpi")
.AddConstructor<NullMessageSimulatorImpl> ()
.AddAttribute ("SchedulerTune", "Null Message scheduler tuning parameter",
DoubleValue (1.0),

View File

@@ -34,6 +34,7 @@ TypeId RemoteChannelBundle::GetTypeId (void)
{
static TypeId tid = TypeId ("ns3::RemoteChannelBundle")
.SetParent<Object> ()
.SetGroupName ("Mpi")
.AddConstructor <RemoteChannelBundle> ();
return tid;
}