#include "mamifero.h" Mamifero::Mamifero(int identity, string clas, string name, string scientific, char sex, float size, string diet, string baptism, Veterinario vet, Tratador caretaker, string fur_color): Animal(identity, clas, name, scientific, sex, size, diet, baptism, vet, caretaker), cor_pelo(fur_color) {} string Mamifero::getCor_pelo(){ return cor_pelo; } void Mamifero::setCor_pelo(string fur_color){ cor_pelo = fur_color; }