#ifndef _STUDENT_H_ #define _STUDENT_H_ #include #include #include using std::string; using std::ostream; using std::cout; using std::endl; /////////////////////////////////////////////////////////////////////////////// // // Class Definition: // Student // // This class will be used to hold the information of a student. It will provide the following // functions: // 1.) Able to set the information of the student // 2.) Able to access the information of the student // 3.) Able to see whether or not the student information is empty // class Student { private: string name; string phone; string email; string streetaddy; string aptnumber; string city; string state; string zipcode; string other; public: Student(); void SetName(string namein); void SetPhone(string phonein); void SetEmail(string emailin); void SetStreetAddress(string streetaddyin); void SetAptNumber(string aptnumberin); void SetCity(string cityin); void SetState(string statein); void SetZipCode(string zipcodein); void SetOther(string otherin); string GetName() const; string GetPhone() const; string GetEmail() const; string GetStreetAddress() const; string GetAptnumber() const; string GetCity() const; string GetState() const; string GetZipCode() const; string GetOther() const; void PrintStudent(ostream& outFile) const; bool isEmpty() const; }; #endif