Add empty implementation of Simulator::SetImplementation, to make Python bindings work.

This commit is contained in:
Gustavo J. A. M. Carneiro
2008-07-24 11:37:56 +01:00
parent f573eaa47a
commit 732b7994de

View File

@@ -276,6 +276,13 @@ Simulator::GetMaximumSimulationTime (void)
return GetImpl ()->GetMaximumSimulationTime ();
}
void
Simulator::SetImplementation (Ptr<SimulatorImpl> impl)
{
NS_FATAL_ERROR ("TODO");
}
} // namespace ns3