Example #1
0
list<ListType>::list(const list<ListType> &L)
{
	CurrentItem = NULL;
	list_size = ZERO;

	while (list_size < L.Size())
		Insert(L.Prev());
}