/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* Animal.hpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: bchanot +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2025/12/18 16:26:41 by bchanot #+# #+# */ /* Updated: 2025/12/18 18:45:42 by bchanot ### ########.fr */ /* */ /* ************************************************************************** */ #ifndef AANIMAL_HPP # define AANIMAL_HPP # include # include class AAnimal { public: AAnimal(); AAnimal( AAnimal const & src ); AAnimal( std::string const & type ); virtual ~AAnimal(); AAnimal & operator=( AAnimal const & rhs ); virtual void makeSound(void) const = 0; protected: std::string type; }; std::ostream & operator<<( std::ostream & o, AAnimal const & i ); #endif /* ********************************************************** ANIMAL_H */