small tweak to generated dox
authorMathieu Lacage <mathieu.lacage@sophia.inria.fr>
Thu, 17 Apr 2008 15:33:39 -0700
changeset 2970 0384d6f6cca1
parent 2969 9d05d2a95dfa
child 2971 75780f899be3
small tweak to generated dox
src/core/object-vector.h
src/core/pointer.h
--- a/src/core/object-vector.h	Thu Apr 17 15:30:18 2008 -0700
+++ b/src/core/object-vector.h	Thu Apr 17 15:33:39 2008 -0700
@@ -94,7 +94,7 @@
     return true;
   }
   virtual std::string GetUnderlyingTypeInformation (void) const {
-    return T::GetTypeId ().GetName ();
+    return "ns3::Ptr< " + T::GetTypeId ().GetName () + " >";
   }
   virtual Ptr<AttributeValue> Create (void) const {
     return ns3::Create<ObjectVectorValue> ();
--- a/src/core/pointer.h	Thu Apr 17 15:30:18 2008 -0700
+++ b/src/core/pointer.h	Thu Apr 17 15:33:39 2008 -0700
@@ -120,7 +120,7 @@
   }
   virtual std::string GetUnderlyingTypeInformation (void) const {
     TypeId tid = T::GetTypeId ();
-    return "Ptr< " + tid.GetName () + " >";
+    return "ns3::Ptr< " + tid.GetName () + " >";
   }
   virtual Ptr<AttributeValue> Create (void) const {
     return ns3::Create<PointerValue> ();