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