/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* Human.cpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: cacharle +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2020/02/02 12:52:38 by cacharle #+# #+# */ /* Updated: 2020/02/02 13:08:39 by cacharle ### ########.fr */ /* */ /* ************************************************************************** */ #include "Human.hpp" std::string Human::identify() { return brain.identify(); } const Brain& Human::getBrain() { return brain; }