rename Ptr::Get and Ptr::Peek to GetPointer and PeekPointer

This commit is contained in:
Mathieu Lacage
2007-05-11 09:46:01 +02:00
parent bc15f7157e
commit 24d19e29c0
10 changed files with 163 additions and 132 deletions

View File

@@ -102,7 +102,7 @@ NodeListPriv::GetNNodes (void)
Node *
NodeListPriv::PeekNode (uint32_t n)
{
return m_nodes[n].Peek ();
return PeekPointer (m_nodes[n]);
}
Ptr<Node>