Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F102858131
GraduateStudent.cpp
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, 22:27
Size
410 B
Mime Type
text/x-c
Expires
Wed, Feb 26, 22:27 (1 d, 20 h)
Engine
blob
Format
Raw Data
Handle
24443337
Attached To
R1106 Programming Concept Rouaze
GraduateStudent.cpp
View Options
/*
* GraduateStudent.cpp
*
* Created on: Oct 25, 2012
* Author: rpopescu
*/
#include "GraduateStudent.hpp"
GraduateStudent::GraduateStudent()
: fullTime_(true)
{}
GraduateStudent::GraduateStudent(const std::string& name, const double fines,
const bool fullTime)
: Student(name, fines, 0.0),
fullTime_(fullTime)
{}
double GraduateStudent::MoneyOwed() const
{
return GetFines();
}
Event Timeline
Log In to Comment