blob: 6c1f28beb9a0f825ce236adf2e975ca5e9d2ea1e (
plain)
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
|
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* Brain.hpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: cacharle <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/02/02 12:47:22 by cacharle #+# #+# */
/* Updated: 2020/02/02 16:28:27 by cacharle ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef BRAIN_HPP
# define BRAIN_HPP
# include <string>
# include <sstream>
# include <iostream>
class Brain
{
public:
std::string identify() const;
};
#endif
|