-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBrain.hpp
More file actions
33 lines (27 loc) · 1.16 KB
/
Brain.hpp
File metadata and controls
33 lines (27 loc) · 1.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* Brain.hpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: zelhajou <zelhajou@student.1337.ma> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/06/15 23:19:38 by zelhajou #+# #+# */
/* Updated: 2024/06/15 23:33:08 by zelhajou ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef BRAIN_HPP
# define BRAIN_HPP
# include <iostream>
class Brain
{
private:
std::string ideas[100];
public:
Brain();
Brain(const Brain& other);
Brain& operator=(const Brain& other);
~Brain();
void setIdea(int index, std::string idea);
std::string getIdea(int index) const;
};
#endif