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