A Discrete-Event Network Simulator
API
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
trailer.cc
Go to the documentation of this file.
1 #include "trailer.h"
2 
3 namespace ns3 {
4 
6 
8 {
9 }
10 
11 TypeId
13 {
14  static TypeId tid = TypeId ("ns3::Trailer")
15  .SetParent<Chunk> ()
16  ;
17  return tid;
18 }
19 
20 std::ostream & operator << (std::ostream &os, const Trailer &trailer)
21 {
22  trailer.Print (os);
23  return os;
24 }
25 
26 } // namespace ns3