piscine_cpp/cpp04/ex01/Brain.hpp
2025-02-06 17:56:59 +01:00

29 lines
1 KiB
C++

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* Brain.hpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: rparodi <rparodi@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2025/02/06 15:17:49 by rparodi #+# #+# */
/* Updated: 2025/02/06 17:35:51 by rparodi ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef BRAIN_HPP
#define BRAIN_HPP
#include <string>
class Brain {
public:
Brain();
~Brain();
std::string idea[100];
protected:
private:
};
#endif