Merge branch 'three-gpp-channel-fixes'

* three-gpp-channel-fixes:
  propagation: The AlwaysLos and NeverLos channel condition models are now usable with ObjectFactories
This commit is contained in:
Natale Patriciello
2020-04-01 18:52:44 +02:00

View File

@@ -93,6 +93,7 @@ AlwaysLosChannelConditionModel::GetTypeId (void)
static TypeId tid = TypeId ("ns3::AlwaysLosChannelConditionModel")
.SetParent<Object> ()
.SetGroupName ("Propagation")
.AddConstructor<AlwaysLosChannelConditionModel> ()
;
return tid;
}
@@ -134,6 +135,7 @@ NeverLosChannelConditionModel::GetTypeId (void)
static TypeId tid = TypeId ("ns3::NeverLosChannelConditionModel")
.SetParent<Object> ()
.SetGroupName ("Propagation")
.AddConstructor<NeverLosChannelConditionModel> ()
;
return tid;
}