This repository has been archived on 2024-12-16. You can view files and clone it, but cannot push or open issues or pull requests.
CodeBlocksPortable/WATCOM/samples/os2/som/classes/graduate.csc

16 lines
321 B
Plaintext

include <student.sc>
class:
GraduateStudent;
parent:
Student;
data:
char thesis[128]; /* thesis title */
char degree[16]; /* graduate degree type */
methods:
override printStudentInfo;
override getStudentType;
void setUpGraduateStudent(char *id, char *name, char *thesis, char *degree);