/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* Brain.cpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: cacharle +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2020/02/02 12:47:24 by cacharle #+# #+# */ /* Updated: 2020/02/02 16:32:58 by cacharle ### ########.fr */ /* */ /* ************************************************************************** */ #include "Brain.hpp" std::string Brain::identify() const { std::stringstream ss; ss << this; return "0x" + ss.str(); }