| 12345678910111213141516171819202122232425262728293031323334353637 |
- /* ************************************************************************** */
- /* */
- /* ::: :::::::: */
- /* Brain.hpp :+: :+: :+: */
- /* +:+ +:+ +:+ */
- /* By: bchanot <bchanot@42.fr> +#+ +:+ +#+ */
- /* +#+#+#+#+#+ +#+ */
- /* 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 <iostream>
- # include <string>
- 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 */
|