/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* Brain.hpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: aortigos class Brain { private: std::string ideas[100]; public: Brain(); ~Brain(); Brain(const Brain &other); Brain& operator=(const Brain &other); void setIdea(int i, const std::string &idea); std::string getIdea(int i) const; }; #endif