/**
 *
 * Interface CurrFactory implements a method 
 * that shows the currencies in British pounds, 
 * Canadian dollars, Euros, Australian dollars 
 * and US dollars.
 *
 * @author  Daniel Burgner
 * @version 1.0
 * @class   CS5730
 * @date    03.05.2002
 *
 */

public interface CurrFactory {
	/* makeConversion stores the conversions into
	   a Conversion array */
	Conversion[] makeConversion(String strCurr);
}
