#ifndef STUDENT_H #define STUDENT_H #include using namespace std; class Student { public: Student(); void changeName(string newName); void changePhone(string newPhone); void changeEmail(string newEmail); void changeStreet(string newStreet); void changeApt(string newApt); void changeCity(string newCity); void changeState(string newState); void changeZip(string newZip); void changeOther(string newOther); void changeExist(bool newExist); void reset(); bool doesExist(); string nameIs(); string phoneIs(); string emailIs(); string streetIs(); string aptIs(); string cityIs(); string stateIs(); string zipIs(); string otherIs(); private: string name; string phone; string email; string street; string apt; string city; string state; string zip; string other; bool exist; }; #endif