#include <gstud.h>
Inheritance diagram for gstud:


Public Methods | |
| gstud () | |
| virtual | ~gstud () |
| gstud (const gstud &g) | |
| const gstud & | operator= (const gstud &g) |
| virtual void | removea (int index) |
| const int * | getCmte () const |
| string | getuMajor () const |
| string | getSchool () const |
| string | getFinStatus () const |
| string | getUDegree () const |
| void | setCmte (const int c[]) |
| void | setuMajor (const string &m) |
| void | setSchool (const string &s) |
| void | setFinSatus (const string &s) |
| void | setUDegree (const string &ud) |
| virtual string | ToParse (int fld) |
| Gets neccessary data to parse string. More... | |
| virtual string | ToString () |
| Returns the field as a string. More... | |
| virtual string | ToFileFmt () |
| Converts field to the current file format. More... | |
Protected Methods | |
| void | copy (const gstud &g) |
Protected Attributes | |
| int | m_gCommittee [3] |
| string | m_uMajor |
| string | m_uSchool |
| string | m_finStatus |
| Students financial aid status. More... | |
| string | m_uDegree |
| Students undergraduate degree. More... | |
|
|
|
|
|
|
|
|
|
|
|
Converts field to the current file format.
Reimplemented from student. |
|
|
Gets neccessary data to parse string.
Reimplemented from person. |
|
|
Returns the field as a string.
Reimplemented from student. |
|
|
|
|
|
00028 {
00029 int temp[3];
00030 for (int i = 0; i < 3; i++)
00031 temp[i] = m_gCommittee[i];
00032
00033 return m_gCommittee;
00034 }
|
|
|
00047 {
00048 return m_finStatus;
00049 }
|
|
|
00042 {
00043 return m_uSchool;
00044 }
|
|
|
00052 {
00053 return m_uDegree;
00054 }
|
|
|
00037 {
00038 return m_uMajor;
00039 }
|
|
|
|
|
|
Reimplemented from student. |
|
|
00057 {
00058 for (int i = 0; i < 3; i++)
00059 m_gCommittee[i] = c[i];
00060 }
|
|
|
00073 {
00074 m_finStatus = s;
00075 }
|
|
|
00068 {
00069 m_uSchool = s;
00070 }
|
|
|
00078 {
00079 m_uDegree = ud;
00080 }
|
|
|
00063 {
00064 m_uMajor = m;
00065 }
|
|
|
Students financial aid status.
|
|
|
|
|
|
Students undergraduate degree.
|
|
|
|
|
|
|
1.2.11.1 written by Dimitri van Heesch,
© 1997-2001