#ifndef ANIMAL_H
#define ANIMAL_H

struct animal {
   virtual ~animal( ) = default;
   virtual void haz_ruidito( ) = 0;
};

#endif
