/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* WrongCat.hpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: narnaud +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2022/06/24 09:02:47 by narnaud #+# #+# */ /* Updated: 2022/06/24 10:13:28 by narnaud ### ########.fr */ /* */ /* ************************************************************************** */ #pragma once #include "WrongAnimal.hpp" class WrongCat: public WrongAnimal { public: WrongCat(void); ~WrongCat(void); void makeSound(void) const; };