/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* WrongCat.hpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: adjoly +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2024/12/01 19:06:08 by adjoly #+# #+# */ /* Updated: 2024/12/06 15:55:47 by adjoly ### ########.fr */ /* */ /* ************************************************************************** */ #pragma once #include "WrongAnimal.hpp" class WrongCat : public WrongAnimal { public: WrongCat(void); ~WrongCat(void); WrongCat(const WrongCat &); WrongCat &operator=(const WrongCat &); void makeSound(void) const; };