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