Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F121700340
GraduateStudent.hpp
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Sun, Jul 13, 06:57
Size
562 B
Mime Type
text/x-c++
Expires
Tue, Jul 15, 06:57 (2 d)
Engine
blob
Format
Raw Data
Handle
27376604
Attached To
R9360 PCSC_git
GraduateStudent.hpp
View Options
/*
* GraduateStudent.hpp
*
* Created on: Oct 25, 2012
* Author: rpopescu
*/
#ifndef GRADUATESTUDENT_HPP_
#define GRADUATESTUDENT_HPP_
#include "Student.hpp"
class
GraduateStudent
:
public
Student
{
public
:
GraduateStudent
();
GraduateStudent
(
const
std
::
string
&
name
,
const
double
fines
=
0.0
,
const
bool
fullTime
=
true
);
virtual
~
GraduateStudent
()
{}
// Total money owed by graduate student
virtual
double
MoneyOwed
()
const
override
;
private
:
// Private data
bool
fullTime_
;
};
#endif
/* GRADUATESTUDENT_HPP_ */
Event Timeline
Log In to Comment