Microsoft Foundation Classes (mfc.hlp) (Table of Contents; Topic list)
CObList::GetTail
CObList                                     Up Contents Index Back
──Microsoft Foundation Classes──────────────────────────────────────────────
 
  CObject*& GetTail();
  CObject* GetTail() const;
 
  Remarks
 
  Gets the CObject pointer that represents the tail element of this list.
 
  You must ensure that the list is not empty before calling GetTail. If
  the list is empty, then the Debug version of the library asserts. Use
  IsEmpty to verify that the list contains elements.
 
  Return Value
 
  See the return value description for GetHead.
 
  Example
 
  CObList list;
 
  list.AddHead( new CAge( 21 ) );
  list.AddHead( new CAge( 40 ) ); // List now contains (40, 21)
  ASSERT( *(CAge*) list.GetTail() == CAge( 21 ) );
 
 
  See Also
 
  CObList::AddTail, CObList::AddHead, CObList::RemoveHead,
  CObList::GetHead
 
 
                                     -♦-