/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* Dog.hpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: rparodi +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2025/01/28 17:44:51 by rparodi #+# #+# */ /* Updated: 2025/02/07 17:51:39 by rparodi ### ########.fr */ /* */ /* ************************************************************************** */ #ifndef DOG_HPP #define DOG_HPP #include "Animal.hpp" #include "Brain.hpp" #include class Dog : public Animal { public: Dog(); ~Dog(); virtual void makeSound() const; protected: private: Brain *brain; }; #endif