/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* AnimalWrong.hpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: bchanot +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2025/12/18 16:26:41 by bchanot #+# #+# */ /* Updated: 2025/12/18 17:01:40 by bchanot ### ########.fr */ /* */ /* ************************************************************************** */ #ifndef ANIMALWRONG_HPP # define ANIMALWRONG_HPP # include # include class AnimalWrong { public: AnimalWrong(); AnimalWrong( AnimalWrong const & src ); AnimalWrong( std::string const & type ); ~AnimalWrong(); AnimalWrong & operator=( AnimalWrong const & rhs ); void makeSound(void) const; std::string getType(void) const; protected: std::string type; }; std::ostream & operator<<( std::ostream & o, AnimalWrong const & i ); #endif /* ********************************************************** ANIMAL_H */