2008-03-17 12:12:17 -07:00
|
|
|
#include "header.h"
|
|
|
|
|
|
|
|
|
|
namespace ns3 {
|
|
|
|
|
|
2008-03-17 13:12:17 -07:00
|
|
|
NS_OBJECT_ENSURE_REGISTERED (Header);
|
|
|
|
|
|
2008-03-17 12:12:17 -07:00
|
|
|
Header::~Header ()
|
|
|
|
|
{}
|
|
|
|
|
|
2008-03-17 13:12:17 -07:00
|
|
|
TypeId
|
|
|
|
|
Header::GetTypeId (void)
|
|
|
|
|
{
|
|
|
|
|
static TypeId tid = TypeId ("ns3::Header")
|
|
|
|
|
.SetParent<ObjectBase> ()
|
|
|
|
|
;
|
|
|
|
|
return tid;
|
|
|
|
|
}
|
|
|
|
|
|
2008-03-17 12:12:17 -07:00
|
|
|
} // namespace ns3
|