aboutsummaryrefslogtreecommitdiff
path: root/cpp01/ex05/Human.hpp
blob: 6c38ee0174cd7a024273d7a3da28ed8982fadc98 (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
/* ************************************************************************** */
/*                                                                            */
/*                                                        :::      ::::::::   */
/*   Human.hpp                                          :+:      :+:    :+:   */
/*                                                    +:+ +:+         +:+     */
/*   By: cacharle <marvin@42.fr>                    +#+  +:+       +#+        */
/*                                                +#+#+#+#+#+   +#+           */
/*   Created: 2020/02/02 12:52:39 by cacharle          #+#    #+#             */
/*   Updated: 2020/02/02 13:08:46 by cacharle         ###   ########.fr       */
/*                                                                            */
/* ************************************************************************** */

#ifndef HUMAN_HPP
# define HUMAN_HPP

# include "Brain.hpp"

class Human
{
	private:
		const Brain brain;

	public:
		std::string	identify();
		const Brain& getBrain() ;
};

#endif