using namespace std; class Dog { public: Dog(int age, int namelength, char * name); ~Dog(); int age; int namelength; char * name; };