#ifndef PERSON_T #define PERSON_T #include #include using namespace std; class PersonT { public: PersonT(); PersonT(string n, int a); string GetName(); void SetName(string n); int GetAge(); void SetAge(int a); private: string name; int age; }; #endif