You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

28 lines
1.1 KiB

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* Brain.hpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: narnaud <narnaud@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/06/24 11:24:53 by narnaud #+# #+# */
/* Updated: 2022/06/24 11:56:58 by narnaud ### ########.fr */
/* */
/* ************************************************************************** */
#pragma once
#include <string>
#include <iostream>
using std::cout;
using std::endl;
using std::string;
class Brain{
string ideas[100];
public:
Brain(void);
Brain(Brain const & src);
virtual ~Brain(void);
Brain & operator= (Brain const & src);
};