CList::RemoveAll
Remove todos os elementos da lista e libera a memória associada.
void RemoveAll( );
Comentários
Nenhum erro será gerado se a lista estiver vazia.
Exemplo
// 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());
Requisitos
Cabeçalho: afxtempl.h