(******
 * This file defines objects and operation related to the initial program gui
 *
 *)

(* Objects from the initial program gui *)

module Grader;
from Gradesheet import GradeSheet;
export all;


obj GraderTool is
    components: Class*;
    description:(*
                  Each instance of the Grader program has zero or more classes loaded in it at one time. *);
end GraderTool;

obj Class is 
    components: GradeSheet;
    description:(*
                  Each Class has a gradesheet
                  *);
end Class;



end Grader;