// Tony Pitale VS.NET 2003 Windows XP Pro 2/19/04 9044-14007 /* Provides set and get functionality for all member data */ #include #include "student.h" using namespace std; student::student() { } string student::getName() { return(name); } void student::setName(string tempname) { name = tempname; } string student::getPhone() { return(phoneNumber); } void student::setPhone(string tempphone) { phoneNumber = tempphone; } string student::getEmail() { return(email); } void student::setEmail(string tempemail) { email = tempemail; } string student::getStreet() { return(street); } void student::setStreet(string tempstreet) { street = tempstreet; } string student::getApt() { return(apt); } void student::setApt(string tempapt) { apt = tempapt; } string student::getCity() { return(city); } void student::setCity(string tempcity) { city = tempcity; } string student::getState() { return(state); } void student::setState(string tempstate) { state = tempstate; } string student::getZip() { return(zip); } void student::setZip(string tempzip) { zip = tempzip; } string student::getOther() { return(other); } void student::setOther(string tempother) { other = tempother; }