#include "student.h" student::student() { studentName = ""; phoneNumber = ""; email = ""; addOne = ""; addTwo = ""; city = ""; state = ""; zip = ""; otherInfo = ""; } bool student::setName (string newName) {studentName = newName; return true;} bool student::setNumber (string newNumber) {phoneNumber = newNumber; return true;} bool student::setEmail (string newEmail) {email = newEmail; return true;} bool student::setAddOne (string newAddOne) {addOne = newAddOne; return true;} bool student::setAddTwo (string newAddTwo) {addTwo = newAddTwo; return true;} bool student::setCity (string newCity) {city = newCity; return true;} bool student::setState (string newState) {state = newState; return true;} bool student::setZip (string newZip) {zip = newZip; return true;} bool student::setInfo (string newInfo) {otherInfo = newInfo; return true;} string student::getName() const {return studentName;} string student::getPhone() const {return phoneNumber;} string student::getEmail() const {return email;} string student::getAddOne() const {return addOne;} string student::getAddTwo() const {return addTwo;} string student::getCity() const {return city;} string student::getState() const {return state;} string student::getZip() const {return zip;} string student::getInfo() const {return otherInfo;} ostream& student::Print(ostream& out) { if (studentName == "" && phoneNumber == "" && email == "" && addOne == "" && addTwo == "" && city == "" && state == "" && zip == "" && otherInfo == "") return out; if (studentName != "") { out<<"Name:"<