/**
 * implementation of a set.
 * @author tardy
 */
package fha.inf3.queue;

public abstract class AbstractQueue implements Queue
{
	public void clear()
	{	while(!isEmpty())
		{	dequeue();}
	}
	public boolean isEmpty()
	{	return (size()==0);}
}
