/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* WrongCat.hpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: rparodi +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2025/01/28 17:44:48 by rparodi #+# #+# */ /* Updated: 2025/01/31 19:37:00 by rparodi ### ########.fr */ /* */ /* ************************************************************************** */ #ifndef WRONGCAT_HPP #define WRONGCAT_HPP #include "WrongAnimal.hpp" #include class WrongCat : public WrongAnimal { public: WrongCat(); ~WrongCat(); virtual void makeSound() const; protected: private: }; #endif