#ifndef PERSON_T #define PERSON_T #include // don't like this but I want the constructor in the .h file and I want // to show we are in this constructor. #include class PersonT { public: PersonT(std::string n, int a): name(n), age(a) { std::cout << "In the PersonT constructor for " << name << "." << std::endl; }; virtual ~PersonT() {}; int Age(void) const; std::string Name(void) const; virtual void Print(void) const; private: std::string name; int age; }; #endif