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