/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* Human.hpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: cacharle +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* 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