package rpn;

import rpn.basic.Item;

public interface ItemInterpreter {
	public Item getItem(Calculator ca, Input in);
}