/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* Brain.hpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: cacharle +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2020/02/02 12:47:22 by cacharle #+# #+# */ /* Updated: 2020/04/13 10:04:01 by charles ### ########.fr */ /* */ /* ************************************************************************** */ #ifndef BRAIN_HPP # define BRAIN_HPP # include # include # include class Brain { public: std::string identify() const; }; #endif