package grader.Main;


import java.util.Collection;

/**
 *
 * 
     Histogram represents a histogram that will display the spread of grades
     in a histogram.
    
 *    Derived from an FMSL opaque type.
 * 
 * @author 
 * @version 
 *
 **/

public class Histogram extends Graph {

     /** Default Constructor **/
     public Histogram() {
          super();
     }

}