00001 #include "chunk.h" 00002 00003 namespace ns3 { 00004 00005 NS_OBJECT_ENSURE_REGISTERED (Chunk); 00006 00007 TypeId 00008 Chunk::GetTypeId (void) 00009 { 00010 static TypeId tid = TypeId ("ns3::Chunk") 00011 .SetParent<ObjectBase> () 00012 ; 00013 return tid; 00014 } 00015 00016 } // namespace ns3