Simple list class for AlLinkItem objects.
#include <AlList.h>
class AlList
AlList( AlLinkItem *item = (AlLinkItem*)0 );
virtual ~AlList();
AlLinkItem* first( void ) const
AlLinkItem* last( void ) const
void append( AlLinkItem* );
int remove( AlLinkItem* );
void clear();
This simple container class provides the ability to create and access a list of objects derived from the AlLinkItem class.