//File : testDriverBase.cpp //Author : Andre Long //Due : November 22, 2004 //Description : This program will test the base class "Employee" #include #include"CH15pc2.h" using namespace std; void main() { string nameOfEmployee; string social; string empnum; string startingdate; Employee sue; cout<<"For default object Sue "<>nameOfEmployee; sue.setEmployeeName(nameOfEmployee.c_str()); cout<>social; sue.setSSN(social); if(sue.getSSNFlag()==false) { cout<<"Format for social security number invalid"<>empnum; sue.setEmpNum(empnum); if(sue.getEmpNumFlag()==false) { cout<<"Wrong employee Number Format"<>startingdate; sue.setHireDate(startingdate); cout<