1 #include "tag.h"
2
3 namespace ns3 {
4
5 TypeId
6 Tag::GetTypeId (void)
7 {
8 static TypeId tid = TypeId ("ns3::Tag")
9 .SetParent<ObjectBase> ()
10 ;
11 return tid;
12 }
13
14
15 } // namespace ns3