19 lines
240 B
C++
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
|