equal
deleted
inserted
replaced
21 |
21 |
22 NS_LOG_COMPONENT_DEFINE ("OutputStreamObject"); |
22 NS_LOG_COMPONENT_DEFINE ("OutputStreamObject"); |
23 |
23 |
24 namespace ns3 { |
24 namespace ns3 { |
25 |
25 |
26 NS_OBJECT_ENSURE_REGISTERED (OutputStreamObject); |
|
27 |
|
28 TypeId |
|
29 OutputStreamObject::GetTypeId (void) |
|
30 { |
|
31 static TypeId tid = TypeId ("ns3::OutputStreamObject") |
|
32 .SetParent<Object> () |
|
33 .AddConstructor<OutputStreamObject> () |
|
34 ; |
|
35 return tid; |
|
36 } |
|
37 |
|
38 OutputStreamObject::OutputStreamObject () |
26 OutputStreamObject::OutputStreamObject () |
39 : m_ostream (0) |
27 : m_ostream (0) |
40 { |
28 { |
41 } |
29 } |
42 |
30 |