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