/****************************************************
**
** Gradebook interface
**
** This interface defines the methods that must be
** written in any class that implements this interface.
**
** Do not change anything in this file. 
**
****************************************************/
public interface Gradebook {
    public double calculateGrade();
    public void add(Assignment assign);
}
