A Discrete-Event Network Simulator
API
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
simulator-impl.cc
Go to the documentation of this file.
1 #include "simulator-impl.h"
2 #include "log.h"
3 
4 NS_LOG_COMPONENT_DEFINE ("SimulatorImpl");
5 
6 namespace ns3 {
7 
8 TypeId
10 {
11  static TypeId tid = TypeId ("ns3::SimulatorImpl")
12  .SetParent<Object> ()
13  ;
14  return tid;
15 }
16 
17 } // namespace ns3