#ifndef TOOLTIP_H #define TOOLTIP_H #include #include #include class ToolTip { public: void insert(const QString &key, const QString &value); QString toString(); private: QList > _list; }; #endif // TOOLTIP_H