home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1 / Nebula One.iso / Educational / CurveGrader / Source / Manager.h < prev    next >
Encoding:
Text File  |  1995-06-12  |  497 b   |  27 lines

  1. /*
  2.  *    This class mostly does opening and saving.  Plus setting the matrices
  3.  *    and ScrollView up for max class size (45)
  4.  *    Rob Ferrante, 2/92
  5.  */
  6. #import <objc/Object.h>
  7.  
  8. @interface Manager:Object
  9. {
  10.     id    grades;
  11.     id    quizWindow;
  12.     id    classField;
  13.     id    quizField;
  14.     id    scores;
  15.     id    names;
  16.     id  scroller;
  17.     char  *currentPathName;
  18. }
  19.  
  20. - init;
  21. - saveToFileWithPanel:sender;
  22. - readFromCurrentFile:sender;
  23. - saveToCurrentFile:sender;
  24. - readFromFileWithPanel:sender;
  25. - appDidInit:sender;
  26. @end
  27.