Page MenuHomec4science

PhDStudent.hpp
No OneTemporary

File Metadata

Created
Tue, May 7, 04:15

PhDStudent.hpp

/*
* PhDStudent.hpp
*
* Created on: Oct 25, 2012
* Author: rpopescu
*/
#ifndef PHDSTUDENT_HPP_
#define PHDSTUDENT_HPP_
#include "GraduateStudent.hpp"
class PhDStudent : public GraduateStudent {
public:
PhDStudent() {}
PhDStudent(const std::string &name, const bool fullTime);
virtual ~PhDStudent() {}
// PhD students don't owe money?
virtual double MoneyOwed() const override;
};
#endif /* PHDSTUDENT_HPP_ */

Event Timeline