/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* Animal.hpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: aortigos class WrongAnimal { protected: std::string type; public: WrongAnimal(); ~WrongAnimal(); WrongAnimal(const WrongAnimal &other); WrongAnimal& operator=(const WrongAnimal &other); void makeSound() const; std::string getType() const; }; #endif