cpp/CPP04/ex01/Brain.hpp
2024-12-04 17:29:31 +01:00

19 lines
240 B
C++

#ifndef BRAIN_HPP
# define BRAIN_HPP
#include <string>
#include <iostream>
class Brain {
public:
Brain();
~Brain();
Brain(const Brain &other);
Brain& operator=(const Brain &other);
private:
std::string ideas[100];
};
#endif