/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* Human.hpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: cacharle +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2020/02/02 12:52:39 by cacharle #+# #+# */ /* Updated: 2020/04/13 10:08:07 by charles ### ########.fr */ /* */ /* ************************************************************************** */ #ifndef HUMAN_HPP # define HUMAN_HPP # include "Brain.hpp" class Human { public: Human(); std::string identify(); const Brain& getBrain() ; private: const Brain m_brain; }; #endif