Main Page   Namespace List   Class Hierarchy   Alphabetical List   Compound List   File List   Namespace Members   Compound Members   File Members  

cGrade Class Reference

#include <student.h>

Inheritance diagram for cGrade:

Inheritance graph
[legend]
Collaboration diagram for cGrade:

Collaboration graph
[legend]
List of all members.

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

Constructor & Destructor Documentation

cGrade::cGrade   [inline]
 

00024 {}

cGrade::~cGrade   [inline]
 

00025 {}


Member Function Documentation

string cGrade::NumToString   [inline]
 

00043     {
00044 //      courseMgr::GetSingleton().getEntry(classIndex).ToString();
00045     }

string cGrade::ToFileFmt   [inline, virtual]
 

Converts field to the current file format.

Reimplemented from field.

00048     {
00049         return "";
00050     }

string cGrade::ToParse int    fld [inline, virtual]
 

Gets neccessary data to parse string.

Reimplemented from field.

00030     {
00031         return "";
00032     }

string cGrade::ToString   [inline, virtual]
 

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     }


Member Data Documentation

int cGrade::classIndex
 

string cGrade::grade
 


The documentation for this class was generated from the following file:
Generated on Mon Oct 22 20:19:08 2001 for University People Management System by doxygen1.2.11.1 written by Dimitri van Heesch, © 1997-2001