1
0
This repository has been archived on 2025-01-26. You can view files and clone it, but cannot push or open issues or pull requests.
CPP_Module_04/ex02/Brain.hpp
2024-12-06 16:24:15 +01:00

27 lines
1.1 KiB
C++

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* Brain.hpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: adjoly <adjoly@student.42angouleme.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/12/06 11:35:05 by adjoly #+# #+# */
/* Updated: 2024/12/06 15:53:18 by adjoly ### ########.fr */
/* */
/* ************************************************************************** */
#pragma once
#include <string>
#include "Log.hpp"
class Brain {
public:
Brain(void);
~Brain(void);
Brain(const Brain &);
Brain &operator=(const Brain &);
std::string _ideas[100];
};