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