#include "student.h" // ****constructor Student::Student() { name = phone = email = street = apt = city = state = zip = other = "/0"; exist = false; } // ****modifiers void Student::reset() { name = phone = email = street = apt = city = state = zip = other = "/0"; exist = false; } void Student::changeName(string newName) { name = newName; } void Student::changePhone(string newPhone) { phone = newPhone; } void Student::changeEmail(string newEmail) { email = newEmail; } void Student::changeStreet(string newStreet) { street = newStreet; } void Student::changeApt(string newApt) { apt = newApt; } void Student::changeCity(string newCity) { city = newCity; } void Student::changeState(string newState) { state = newState; } void Student::changeZip(string newZip) { zip = newZip; } void Student::changeOther(string newOther) { other = newOther; } void Student::changeExist(bool newExist) { exist = newExist; } // *****accessors bool Student::doesExist() { return exist; } string Student::nameIs() { return name; } string Student::phoneIs() { return phone; } string Student::emailIs() { return email; } string Student::streetIs() { return street; } string Student::aptIs() { return apt; } string Student::cityIs() { return city; } string Student::stateIs() { return state; } string Student::zipIs() { return zip; } string Student::otherIs() { return other; }