#ifndef SSTREAM_H #define SSTREAM_H #include using std::string; #endif #ifndef FSTREAM_H #define FSTREAM_H #include using std::ofstream; #endif class student { public : //Constructors student(); student( string aname, string aphone, string anemail, string astreet, string anaptnum, string acity, string astate, int azip, string another ); //Accessors string getname( ) const; //returns the student’s name string getphone( ) const; //returns the student’s phone number string getemail( ) const; //returns the student’s e-mail string getstreet( ) const; //returns the student’s street and number string getaptnum( ) const; //returns the student’s apartment number string getcity( ) const; //returns the student’s city string getstate( ) const; //returns the student’s state int getzip( ) const; //returns the student’s zip code string getother( ) const; //returns other information void print( ofstream& out ) const; //prints a student’s information to a file private : string name, phone, email, street, aptnum, city, state, other; int zip; };