Microsoft Foundation Classes (mfc.hlp) (Table of Contents; Topic list)
Important Notice
The pages on this site contain documentation for very old MS-DOS software, purely for historical purposes. If you're looking for up-to-date documentation, particularly for programming, you should not rely on the information found here, as it will be woefully out of date.
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
 
 
                                     -♦-