/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* Cat.hpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: rparodi +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2025/01/28 17:44:48 by rparodi #+# #+# */ /* Updated: 2025/01/30 13:41:27 by rparodi ### ########.fr */ /* */ /* ************************************************************************** */ #ifndef CAT_HPP #define CAT_HPP #include "Animal.hpp" #include class Cat : public Animal { public: Cat(); ~Cat(); protected: private: }; #endif