//******************STUDENT CLASS DECLARATION****************** #ifndef STUDENT #define STUDENT #include #include #include #include #include #include #include using namespace std; class student { private: string studentName; string phoneNumber; string email; string addOne; string addTwo; string city; string state; string zip; string otherInfo; public: student(); //default constructor //Mutator member functions bool setName (string newName); bool setNumber (string newNumber); bool setEmail (string newEmail); bool setAddOne (string newAddOne); bool setAddTwo (string newAddTwo); bool setCity (string newCity); bool setState (string newState); bool setZip (string newZip); bool setInfo (string newInfo); //Reporter member functions string getName() const; string getPhone() const; string getEmail() const; string getAddOne() const; string getAddTwo() const; string getCity() const; string getState() const; string getZip() const; string getInfo() const; //Print function ostream& Print(ostream& out); }; #endif