#include #include "PersonT.h" using namespace std; PersonT::PersonT() { cout << " in the constructor" << endl; name = "No Name"; age = 0; } PersonT::PersonT(string n, int a) { cout << "In the second constructor" << endl; name =n; if (a >=0) { age = a; } else { age = 0; } } string PersonT::GetName() { return name; } void PersonT::SetName(string n) { name = n; } int PersonT::GetAge() { return age; } void PersonT::SetAge( int a) { if (a >= 0) { age = a; } }