#ifndef STUDENT_H #define STUDENT_H #include using namespace std; class Student { friend ostream &operator<< (ostream&, const Student&); friend istream &operator>> (istream&, Student&); public: Student(int=-1, string="Unknown", string="Unknown", float=0.0); ~Student(); void AssignGrade(int, int); protected: // nothing here for now - just wait! :) private: string first_name; string last_name; float gpa; int id; }; #endif