/* ************************************************************************** */ /* */ /* :::::::: */ /* Cat.hpp :+: :+: */ /* +:+ */ /* By: whaffman +#+ */ /* +#+ */ /* Created: 2025/04/05 17:02:57 by whaffman #+# #+# */ /* Updated: 2025/04/05 17:30:47 by whaffman ######## odam.nl */ /* */ /* ************************************************************************** */ #pragma once #include "Animal.hpp" #include class Cat : public Animal { public: Cat(); Cat(const Cat &cat); ~Cat() override; Cat &operator=(const Cat &cat); void makeSound(void) const override; };