// 22.5HV2 Software Engineering II // Unit 4 Exercise 2 // Uninteresting driver program to test Person and Name classes #include #include "person.h" void main() { Person me("Stuart","Clarke",'m',5,8,65); cout << me; }