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
static TypeId GetTypeId(void)
#define NS_LOG_COMPONENT_DEFINE(name)
Define a Log component with a specific name.
Definition: log.h:170
a base class which provides memory management and object aggregation
Definition: object.h:64
a unique identifier for an interface.
Definition: type-id.h:49
TypeId SetParent(TypeId tid)
Definition: type-id.cc:610