/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* Brain.hpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: bchanot +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2025/12/18 17:12:31 by bchanot #+# #+# */ /* Updated: 2025/12/18 17:27:51 by bchanot ### ########.fr */ /* */ /* ************************************************************************** */ #ifndef BRAIN_HPP # define BRAIN_HPP # include # include class Brain { public: Brain(); Brain( Brain const & src ); ~Brain(); Brain & operator=( Brain const & rhs ); protected: std::string _ideas[100]; }; std::ostream & operator<<( std::ostream & o, Brain const & i ); #endif /* *********************************************************** BRAIN_H */