src/devices/wifi/propagation-delay-model.cc
changeset 2940 8fb456039670
parent 2625 90ba95050923
child 2965 4b28e9740e3b
--- a/src/devices/wifi/propagation-delay-model.cc	Thu Apr 10 10:23:56 2008 -0700
+++ b/src/devices/wifi/propagation-delay-model.cc	Thu Apr 10 10:24:18 2008 -0700
@@ -24,6 +24,17 @@
 
 namespace ns3 {
 
+NS_OBJECT_ENSURE_REGISTERED (PropagationDelayModel);
+
+TypeId 
+PropagationDelayModel::GetTypeId (void)
+{
+  static TypeId tid = TypeId ("ns3::PropagationDelayModel")
+    .SetParent<Object> ()
+    ;
+  return tid;
+}
+
 PropagationDelayModel::~PropagationDelayModel ()
 {}