32 lines
1.1 KiB
C++
32 lines
1.1 KiB
C++
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* Brain.hpp :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: aortigos <aortigos@student.42malaga.com +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2025/11/10 11:22:17 by aortigos #+# #+# */
|
|
/* Updated: 2025/11/10 12:43:08 by aortigos ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef BRAIN_HPP
|
|
|
|
# define BRAIN_HPP
|
|
|
|
#include <iostream>
|
|
|
|
class Brain
|
|
{
|
|
private:
|
|
std::string ideas[100];
|
|
|
|
public:
|
|
Brain();
|
|
~Brain();
|
|
Brain(const Brain &other);
|
|
Brain& operator=(const Brain &other);
|
|
};
|
|
|
|
#endif
|