/* The student class will hold data on a student. It will have private class members for the necessary data for each as well as the necessary accessor and mutator functions. */ #ifndef StuDent #define StuDent #include using namespace std; class Student { public: Student::Student();//constructor - initialises data values int Print(ofstream & Out);//prints out data members as per the project specs. int Delete(); //sets the data members to default values so it can be recognised as a blank spot in the array in container class. //data accessor and mutator functions. string getName(); int setName(string Input); string getPhone(); int setPhone(string Input); string getAdd1(); int setAdd1(string Input); string getAdd2(); int setAdd2(string Input); string getCity(); int setCity(string Input); string getState(); int setState(string Input); int getZip(); int setZip(int Input); string getEmail(); int setEmail(string Input); string getOther(); int setOther(string Input); private: string Name;//student name string Phone;//student phone number string Address1;//student address 1 string Address2;//student address 2 string City;//students city string State;//student's state int Zip;//students zip code string Email;//students email address string Other;//other information about student. }; #endif