/* ************************************************************************** */ /* */ /* :::::::: */ /* WrongCat.hpp :+: :+: */ /* +:+ */ /* By: whaffman +#+ */ /* +#+ */ /* Created: 2025/04/05 17:23:37 by whaffman #+# #+# */ /* Updated: 2025/04/05 17:30:32 by whaffman ######## odam.nl */ /* */ /* ************************************************************************** */ #pragma once #include "WrongAnimal.hpp" #include #include class WrongCat : public WrongAnimal { public: WrongCat(); WrongCat(const WrongCat &cat); ~WrongCat() override; WrongCat &operator=(const WrongCat &cat); void makeSound(void) const override; };