/* * paid_student.h * * Created on: 18.04.2013 * Author: trifon */ #ifndef PAID_STUDENT_H_ #define PAID_STUDENT_H_ #include using namespace std; #include "student.h" class PaidStudent : public Student { private: double fee; public: PaidStudent(); void setFee(double); double getFee() const; friend istream& operator>>(istream&, PaidStudent&); friend ostream& operator<<(ostream&, PaidStudent const &); }; #endif /* PAID_STUDENT_H_ */