/**
 * WrappingStation - Handles the control of the BestWraps application. Uses 
 * WrapIO tohandle user input/output and manages the StoreRoom, allowing the  
 * additionof WrappingPaper to the StoreRoom and the location of the smallest  
 * pieceof wrapping paper large enough to wrap a box presented to the wrapping 
 * station
 *
 * @author <your name here>
 * @version <put date here>
 */
public class WrappingStation
{
	private StoreRoom room;
	private WrapIO io;
	
	public WrappingStation()
	{
		// to be written
	}
	
	/**
	 * start - the primary locus of control for the BestWraps application. This 
	 * method should break the problem down into several smaller methods, each
	 * designed to handle an individual aspect of the program
	 */
	public void start()
	{
		// to be written
	}

} // class WrappingStation