Brain.hpp 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. /* ************************************************************************** */
  2. /* */
  3. /* ::: :::::::: */
  4. /* Brain.hpp :+: :+: :+: */
  5. /* +:+ +:+ +:+ */
  6. /* By: bchanot <bchanot@42.fr> +#+ +:+ +#+ */
  7. /* +#+#+#+#+#+ +#+ */
  8. /* Created: 2025/12/18 17:12:31 by bchanot #+# #+# */
  9. /* Updated: 2025/12/18 17:27:51 by bchanot ### ########.fr */
  10. /* */
  11. /* ************************************************************************** */
  12. #ifndef BRAIN_HPP
  13. # define BRAIN_HPP
  14. # include <iostream>
  15. # include <string>
  16. class Brain
  17. {
  18. public:
  19. Brain();
  20. Brain( Brain const & src );
  21. ~Brain();
  22. Brain & operator=( Brain const & rhs );
  23. protected:
  24. std::string _ideas[100];
  25. };
  26. std::ostream & operator<<( std::ostream & o, Brain const & i );
  27. #endif /* *********************************************************** BRAIN_H */