/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* CatWrong.hpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: bchanot +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2025/12/18 16:28:27 by bchanot #+# #+# */ /* Updated: 2025/12/18 17:03:19 by bchanot ### ########.fr */ /* */ /* ************************************************************************** */ #ifndef CAT_HPP # define CAT_HPP # include # include #include "AnimalWrong.hpp" class CatWrong : public AnimalWrong { public: CatWrong(); CatWrong( CatWrong const & src ); ~CatWrong(); CatWrong & operator=( CatWrong const & rhs ); void makeSound(void) const; private: }; std::ostream & operator<<( std::ostream & o, CatWrong const & i ); #endif /* ************************************************************* CAT_H */