#ifndef STUDENTINFO_H #define STUDENTINFO_H // includes #include using namespace std; // class definition class StudentInfo { public: //default constructor StudentInfo(); // Mutators void SetName(const string);//Set student name void SetPhoneNumber(const string); // set phone number void SetEmail(const string); // set e-mail address void SetAddL1(const string);// set address line 1 void SetAddL2(const string); // set address line 2 void SetCity(const string); // set city void SetState(const string); // set state void SetZipcode(const string); // set zipcode void SetOther(const string); // set other information // Reporters string GetName() const; // get student name string GetPhoneNumber() const; // get phone number string GetEmail() const; // get e-mail address string GetAddL1() const; // get address line 1 string GetAddL2() const; // get address line 2 string GetCity() const; // get city string GetState() const; // get states string GetZipcode()const; // get zipcode string GetOther() const; // get other information private: // declare all string variables string name, // name of the student phoneNumber, // phone number email, // e-mail addressLine1, // address line1 addressLine2, // address line2 city, // city state, // state zipcode, // zipcode other; // other information }; #endif