Files
unison/src/simulator/simulator-impl.cc
Mathieu Lacage 3db48958f6 add GetTypeId
2010-07-06 15:41:54 +02:00

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