/********************************************************************* C201 Computer Programming II Fall 2006 Dana Vrajitoru & Definition of the class Human. **********************************************************************/ #ifndef HUMAN_H #define HUMAN_H #include "animal.h" class Human : public Animal { protected: string first_name, last_name; public: // Constructors Human(); Human(string s1, string s2); // Destructor ~Human(); // Overloading the function Walk void Walk(int i); // Redefining the function Walk void Walk(); // Sets the value of the first name void Set_first_name(string n); // Sets the value of the last name void Set_last_name(string n); // Redefining the function output name. void Output_name(); }; #endif