blob: bf872e4a14ce122af7ffea606137b3838f13b2e1 (
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
27
28
29
|
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* Human.hpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: cacharle <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/02/02 12:52:39 by cacharle #+# #+# */
/* Updated: 2020/11/10 08:31:46 by cacharle ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef HUMAN_HPP
# define HUMAN_HPP
# include "Brain.hpp"
class Human
{
public:
Human();
std::string identify() const;
Brain const& getBrain() const;
private:
const Brain m_brain;
};
#endif
|