Files
unison/src/core/model/simulator-impl.cc
2012-11-13 15:02:39 +01:00

18 lines
267 B
C++

#include "simulator-impl.h"
#include "log.h"
NS_LOG_COMPONENT_DEFINE ("SimulatorImpl");
namespace ns3 {
TypeId
SimulatorImpl::GetTypeId (void)
{
static TypeId tid = TypeId ("ns3::SimulatorImpl")
.SetParent<Object> ()
;
return tid;
}
} // namespace ns3