#include #include #include "PersonT.h" int main() { cout << "Before declaring thePerson " << endl; PersonT thePerson; cout << "After declaring thePerson " << endl; PersonT secondPerson("Bob", 7); cout << "After declaring secondPerson" << endl; cout << "The person's name is " << thePerson.GetName() << endl; thePerson.SetName("Cher"); cout << "The second person is " << secondPerson.GetName() << " who is " << secondPerson.GetAge() << endl; return 0; }