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