#ifndef SLOTH_H #define SLOTH_H #include "animal.h" #include using namespace std; //Sloth is inherited from Animal class Sloth : public Animal { private: float speed; public: Sloth(); ~Sloth(); void make_noise(int); void print(); }; #endif