aboutsummaryrefslogtreecommitdiff
path: root/cpp01/ex05/Brain.hpp
blob: 81b5a07c0cc5e3de67501b7d8e1fff18be8ef9d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/* ************************************************************************** */
/*                                                                            */
/*                                                        :::      ::::::::   */
/*   Brain.hpp                                          :+:      :+:    :+:   */
/*                                                    +:+ +:+         +:+     */
/*   By: cacharle <marvin@42.fr>                    +#+  +:+       +#+        */
/*                                                +#+#+#+#+#+   +#+           */
/*   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 <string>
# include <sstream>
# include <iostream>

class Brain
{
public:
	std::string identify() const;
};

#endif