src/mobility/random-topology.h
changeset 2250 18f432098389
parent 2249 3a1da26d61dc
--- a/src/mobility/random-topology.h	Thu Jan 03 11:39:45 2008 +0100
+++ b/src/mobility/random-topology.h	Tue Jan 15 12:36:22 2008 +0100
@@ -54,7 +54,7 @@
    * specified position and mobility models.
    */
   RandomTopology (Ptr<RandomPosition> positionModel,
-                  InterfaceId mobilityModel);
+                  TypeId mobilityModel);
 
   ~RandomTopology ();
 
@@ -62,7 +62,7 @@
    * \param interfaceId the type of mobility model attached to each
    *        input object if it does not have one already.
    */
-  void SetMobilityModel (InterfaceId interfaceId);
+  void SetMobilityModel (TypeId interfaceId);
   /**
    * \param positionModel the position model used to initialize
    *        the position of each object.
@@ -90,7 +90,7 @@
   void Layout (const T &begin, const T &end);
  private:
   Ptr<RandomPosition> m_positionModel;
-  InterfaceId m_mobilityModel;
+  TypeId m_mobilityModel;
 };
 
 } // namespace ns3