/* ************************************************************************** */ /* */ /* :::::::: */ /* Cat.hpp :+: :+: */ /* +:+ */ /* By: whaffman +#+ */ /* +#+ */ /* Created: 2025/04/05 17:02:57 by whaffman #+# #+# */ /* Updated: 2025/04/14 21:58:34 by whaffman ######## odam.nl */ /* */ /* ************************************************************************** */ #pragma once #include "AAnimal.hpp" #include "Brain.hpp" #include class Cat : public AAnimal { private: Brain *brain; public: Cat(); Cat(const Cat &other); ~Cat() override; Cat &operator=(const Cat &other); void makeSound(void) const override; Brain &getBrain(); };