changeset 11247 | 2a9cd91d40aa |
parent 10968 | 2d29fee2b7b8 |
11246:9a95c9e7c9b4 | 11247:2a9cd91d40aa |
---|---|
40 TypeId |
40 TypeId |
41 PppHeader::GetTypeId (void) |
41 PppHeader::GetTypeId (void) |
42 { |
42 { |
43 static TypeId tid = TypeId ("ns3::PppHeader") |
43 static TypeId tid = TypeId ("ns3::PppHeader") |
44 .SetParent<Header> () |
44 .SetParent<Header> () |
45 .SetGroupName ("PointToPoint") |
|
45 .AddConstructor<PppHeader> () |
46 .AddConstructor<PppHeader> () |
46 ; |
47 ; |
47 return tid; |
48 return tid; |
48 } |
49 } |
49 |
50 |