#ifndef STUDENT_H_ #define STUDENT_H_ #include using namespace std; #include #include typedef unsigned int ui; class student { private: string name; //Student's Name string phonenum; //Student's phone number string email; //Student's Email string addyl1; //First line of Address string addyl2; //Second line of Address string city; //city of residence string state; //state of residence string zip; //zip code string other; //Anything else? public: student(); //Default Constructor void print(ofstream &ofile); //Prints a student. string eDisp(); //Accessor function for email //Sets a student. Prime mutator. ui setstudent(string nname,string nphonenum,string nemail,string naddy1,string naddy2,string ncity,string nstate,string nzip,string nother); ui delstudent(); //Eliminates a student. }; #endif