src/simulator/simulator.cc
changeset 2943 cdbcd43a019c
parent 2927 73b47ce1d805
child 2965 4b28e9740e3b
--- a/src/simulator/simulator.cc	Thu Apr 10 11:11:55 2008 -0700
+++ b/src/simulator/simulator.cc	Thu Apr 10 11:50:08 2008 -0700
@@ -50,6 +50,9 @@
 namespace ns3 {
 
 
+/**
+ * \brief private implementation detail of the Simulator API.
+ */
 class SimulatorPrivate : public Object
 {
 public:
@@ -100,11 +103,13 @@
   int m_unscheduledEvents;
 };
 
+NS_OBJECT_ENSURE_REGISTERED (SimulatorPrivate);
+
 
 TypeId
 SimulatorPrivate::GetTypeId (void)
 {
-  static TypeId tid = TypeId ("SimulatorPrivate")
+  static TypeId tid = TypeId ("ns3::SimulatorPrivate")
     .SetParent<Object> ()
     .AddConstructor<SimulatorPrivate> ()
     .AddAttribute ("Scheduler",