#include #include "AddrEntry.h" int main() { Name n1("Taylor", "Mary", 'J', "Miss"); Addr a1("77 Northridge Rd.", "Columbia City", "OH", "44325-1234"); AddrEntry item(n1, a1); item.display(); cout << "\n"; AddrEntry itemb("Brown", "Joe", 'M', "Dr.", "55 Westfort St.", "Brimfield", "OH", "44223"); itemb.display(); cout << "\n"; Cstr last = item.name_part().last_name(); cout << last << endl; Name& nm = item.name_part(); nm.display(); cout << "\n"; nm.last_name("Brown"); nm.title("Mrs."); nm.display(); cout << "\n"; item.display(); }