コード例 #1
0
 // remove vp from the list
 void Remove(T *ip)
 {
   PtrList *p = Find(ip);
   if (p)
   {
     p->Remove();
   }
 }