diff options
Diffstat (limited to 'cpp01/ex05/Human.hpp')
| -rw-r--r-- | cpp01/ex05/Human.hpp | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/cpp01/ex05/Human.hpp b/cpp01/ex05/Human.hpp new file mode 100644 index 0000000..6c38ee0 --- /dev/null +++ b/cpp01/ex05/Human.hpp @@ -0,0 +1,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 |
