/********************************************************************* C201 Computer Programming II Fall 2006 Dana Vrajitoru & Definition of the class Animal. **********************************************************************/ #ifndef ANIMAL_H #define ANIMAL_H #include "lifeform.h" class Animal: public Lifeform { protected: int nr_of_legs; bool has_vision; public: // Constructor Animal(); // Destructor for show and tell ~Animal(); // Prints a message about how the animal walks void Walk(); // Returns the value of can_see bool Can_see(); // return has_vision }; #endif