src/common/mtag.cc
changeset 3035 644bfc099992
child 3040 e11e106c7c19
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/common/mtag.cc	Thu Apr 24 14:52:59 2008 -0700
@@ -0,0 +1,15 @@
+#include "mtag.h"
+
+namespace ns3 {
+
+TypeId 
+Mtag::GetTypeId (void)
+{
+  static TypeId tid = TypeId ("ns3::Mtag")
+    .SetParent<ObjectBase> ()
+    ;
+  return tid;
+}
+
+
+} // namespace ns3