#ifndef PET_H #define PET_H #include using namespace std; class Pet { protected: string name; string color; public: Pet(string newname, string newcolor) { name = newname; color = newcolor; } virtual string getDescription() { return (name + " " + color); } string getColor() {return color;} }; #endif