/**************************************************************************
	parameters: -
	return value: -

	Starting from the head, while the current node does not equal null,
	output the nodes contents.
**************************************************************************/
void PaintingList::printAll()
{
	Painting * curr = head;
	while(NULL != curr)
	{
		curr->print();
		curr = curr->getNext();
	}

}