#include <student.h>
Inheritance diagram for cGrade:


Public Methods | |
| cGrade () | |
| ~cGrade () | |
| string | ToParse (int fld) |
| Gets neccessary data to parse string. More... | |
| string | ToString () |
| Returns the field as a string. More... | |
| string | NumToString () |
| string | ToFileFmt () |
| Converts field to the current file format. More... | |
Public Attributes | |
| string | grade |
| int | classIndex |
|
|
00024 {}
|
|
|
00025 {}
|
|
|
00043 {
00044 // courseMgr::GetSingleton().getEntry(classIndex).ToString();
00045 }
|
|
|
Converts field to the current file format.
Reimplemented from field. 00048 {
00049 return "";
00050 }
|
|
|
Gets neccessary data to parse string.
Reimplemented from field. 00030 {
00031 return "";
00032 }
|
|
|
Returns the field as a string.
Reimplemented from field. 00035 {
00036 char s[8];
00037 itoa(classIndex, s, 10);
00038
00039 return (string(s) + " " + grade);
00040 }
|
|
|
|
|
|
|
1.2.11.1 written by Dimitri van Heesch,
© 1997-2001