15 lines
208 B
C++
15 lines
208 B
C++
#include "simulator-impl.h"
|
|
|
|
namespace ns3 {
|
|
|
|
TypeId
|
|
SimulatorImpl::GetTypeId (void)
|
|
{
|
|
static TypeId tid = TypeId ("ns3::SimulatorImpl")
|
|
.SetParent<Object> ()
|
|
;
|
|
return tid;
|
|
}
|
|
|
|
} // namespace ns3
|