/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* WrongCat.hpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: rparodi +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2025/01/28 17:44:48 by rparodi #+# #+# */ /* Updated: 2025/02/10 12:49:13 by rparodi ### ########.fr */ /* */ /* ************************************************************************** */ #ifndef WRONGCAT_HPP #define WRONGCAT_HPP #include "WrongAnimal.hpp" #include class WrongCat : public WrongAnimal { public: WrongCat(); ~WrongCat(); protected: private: }; #endif