Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F102860989
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
Mon, Feb 24, 23:08
Size
531 B
Mime Type
text/x-c++
Expires
Wed, Feb 26, 23:08 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
24443788
Attached To
R1106 Programming Concept Rouaze
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
;
private
:
// Private data
bool
fullTime_
;
};
#endif
/* GRADUATESTUDENT_HPP_ */
Event Timeline
Log In to Comment