src/common/tag.cc
author Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
Thu, 24 Apr 2008 16:06:33 -0700
changeset 3041 a624276a897b
parent 3040 src/common/mtag.cc@e11e106c7c19
child 3050 9cc612c6cd32
permissions -rw-r--r--
mtag -> tag

#include "tag.h"

namespace ns3 {

TypeId 
Tag::GetTypeId (void)
{
  static TypeId tid = TypeId ("ns3::Tag")
    .SetParent<ObjectBase> ()
    ;
  return tid;
}


} // namespace ns3