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