using System; using System.Collections; namespace aima.util { /// /// Ported to .NET by Kris Noesgaard /// from the Java implementation by Ravi Mohan /// public interface Queue { void add(Object anItem); void add(ArrayList items); Object remove(); Object get(); } }