src/core/model/simulator-impl.cc
author Peter D. Barnes, Jr. <barnes26@llnl.gov>
Mon, 15 Jul 2013 14:19:57 -0700
changeset 9949 254133001f4f
parent 9138 967a214aeb54
child 10968 2d29fee2b7b8
permissions -rw-r--r--
Fix strict aliasing warning.

#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