package tim.prune.gui;

/**
 * Interface used to provide progress dialog functions
 */
public interface ProgressIndicator
{
	public void showProgress(int inCurrent, int inMax);
}
