#ifndef _STRINGELEMENT_ #define _STRINGELEMENT_ #include class StringElement { private: std::string m_value; public: StringElement(); ~StringElement(); std::string getValue(); void setValue(std::string value); bool isEmpty(); bool equals(StringElement *element); std::string description(); }; #endif