diff options
Diffstat (limited to 'cpp01/ex05/Brain.hpp')
| -rw-r--r-- | cpp01/ex05/Brain.hpp | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/cpp01/ex05/Brain.hpp b/cpp01/ex05/Brain.hpp new file mode 100644 index 0000000..6c1f28b --- /dev/null +++ b/cpp01/ex05/Brain.hpp @@ -0,0 +1,26 @@ +/* ************************************************************************** */ +/* */ +/* ::: :::::::: */ +/* Brain.hpp :+: :+: :+: */ +/* +:+ +:+ +:+ */ +/* By: cacharle <marvin@42.fr> +#+ +:+ +#+ */ +/* +#+#+#+#+#+ +#+ */ +/* Created: 2020/02/02 12:47:22 by cacharle #+# #+# */ +/* Updated: 2020/02/02 16:28:27 by cacharle ### ########.fr */ +/* */ +/* ************************************************************************** */ + +#ifndef BRAIN_HPP +# define BRAIN_HPP + +# include <string> +# include <sstream> +# include <iostream> + +class Brain +{ + public: + std::string identify() const; +}; + +#endif |
