/**
 * A driver that can be used to "test" 
 * the TwoPartMeasure class
 *
 * @author  Prof. David Bernstein, James Madison University
 * @version 1.0
 */
public class Driver0
{
    /**
     * The entry point of the application
     *
     * @param args   The command line arguments
     */
    public static void main(String[] args)
    {
	TwoPartMeasure       measure;


	measure = new TwoPartMeasure();

    }

}
