small tweak to generated dox

This commit is contained in:
Mathieu Lacage
2008-04-17 15:33:39 -07:00
parent 3b711f9852
commit f2b7b1795b
2 changed files with 2 additions and 2 deletions

View File

@@ -94,7 +94,7 @@ public:
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> ();

View File

@@ -120,7 +120,7 @@ class APointerChecker : public PointerChecker
}
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> ();