/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* WrongCat.hpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: fgras-ca +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2023/12/31 12:22:35 by fgras-ca #+# #+# */ /* Updated: 2023/12/31 16:32:31 by fgras-ca ### ########.fr */ /* */ /* ************************************************************************** */ #ifndef WRONGCAT_HPP #define WRONGCAT_HPP #include "WrongAnimal.hpp" class WrongCat : public WrongAnimal { public: WrongCat(); WrongCat(const WrongCat ©); WrongCat& operator=(const WrongCat &operator_aff); ~WrongCat(); void makeSound() const; }; #endif