SetGroupName for wave module

This commit is contained in:
Tom Henderson
2015-04-16 21:29:05 -07:00
parent e10195a6ec
commit 16a35c6e49
11 changed files with 11 additions and 0 deletions

View File

@@ -42,6 +42,7 @@ BsmApplication::GetTypeId (void)
{
static TypeId tid = TypeId ("ns3::BsmApplication")
.SetParent<Application> ()
.SetGroupName ("Wave")
.AddConstructor<BsmApplication> ()
;
return tid;

View File

@@ -40,6 +40,7 @@ ChannelCoordinator::GetTypeId (void)
{
static TypeId tid = TypeId ("ns3::ChannelCoordinator")
.SetParent<Object> ()
.SetGroupName ("Wave")
.AddConstructor<ChannelCoordinator> ()
.AddAttribute ("CchInterval", "CCH Interval, default value is 50ms.",
TimeValue (GetDefaultCchInterval ()),

View File

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

View File

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

View File

@@ -56,6 +56,7 @@ DefaultChannelScheduler::GetTypeId (void)
{
static TypeId tid = TypeId ("ns3::DefaultChannelScheduler")
.SetParent<ChannelScheduler> ()
.SetGroupName ("Wave")
.AddConstructor<DefaultChannelScheduler> ()
;
return tid;

View File

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

View File

@@ -45,6 +45,7 @@ OcbWifiMac::GetTypeId (void)
{
static TypeId tid = TypeId ("ns3::OcbWifiMac")
.SetParent<RegularWifiMac> ()
.SetGroupName ("Wave")
.AddConstructor<OcbWifiMac> ()
;
return tid;

View File

@@ -247,6 +247,7 @@ VendorSpecificActionHeader::GetTypeId (void)
{
static TypeId tid = TypeId ("ns3::VendorSpecificActionHeader")
.SetParent<Header> ()
.SetGroupName ("Wave")
.AddConstructor<VendorSpecificActionHeader> ()
;

View File

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

View File

@@ -34,6 +34,7 @@ WaveMacLow::GetTypeId (void)
{
static TypeId tid = TypeId ("ns3::WaveMacLow")
.SetParent<MacLow> ()
.SetGroupName ("Wave")
.AddConstructor<WaveMacLow> ()
;
return tid;

View File

@@ -41,6 +41,7 @@ WaveNetDevice::GetTypeId (void)
{
static TypeId tid = TypeId ("ns3::WaveNetDevice")
.SetParent<NetDevice> ()
.SetGroupName ("Wave")
.AddConstructor<WaveNetDevice> ()
.AddAttribute ("Mtu", "The MAC-level Maximum Transmission Unit",
UintegerValue (MAX_MSDU_SIZE - LLC_SNAP_HEADER_LENGTH),