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