home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / WPSDEM.ZIP / CMBSTDNT / GRADUATE.CSC < prev    next >
Text File  |  1992-08-21  |  431b  |  20 lines

  1. include <student.sc>
  2.  
  3. class:
  4.    GraduateStudent,
  5.    major version = 1,
  6.    minor version = 1;
  7.  
  8. parent:
  9.    Student;
  10.  
  11. data:
  12.    char thesis[128];    /* thesis title         */
  13.    char degree[16];     /* graduate degree type */
  14.  
  15. methods:
  16.    override printStudentInfo;
  17.    override getStudentType;
  18.    void     setUpGraduateStudent( char *id, char *name,
  19.                                   char *thesis, char *degree );
  20.