CList::RemoveAll

Removes all the elements from this list and frees the associated memory.

void RemoveAll( );

Remarks

No error is generated if the list is already empty.

Example

// Define myList.
CList<CString,CString&> myList;

// Add three elements to the list.
myList.AddTail(CString(_T("XYZ")));
myList.AddTail(CString(_T("ABC")));
myList.AddTail(CString(_T("123")));

// Remove all of the elements in the list.
myList.RemoveAll();

// Verify the list is empty.
ASSERT(myList.IsEmpty());      

Requirements

Header: afxtempl.h

See Also

Reference

CList Class

Hierarchy Chart

CList::RemoveAt

Other Resources

CList Members