CObject*& GetTail();
CObject* GetTail() const;
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.
See the return value description for GetHead.
CObList list;
list.AddHead( new CAge( 21 ) );
list.AddHead( new CAge( 40 ) ); // List now contains (40, 21)
ASSERT( *(CAge*) list.GetTail() == CAge( 21 ) );
CObList::GetTail, CObList::AddHead, CObList::RemoveHead, CObList::GetHead