1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2024-10-07 15:23:22 +02:00
GPXSee/src/GUI/tooltip.h

19 lines
266 B
C
Raw Normal View History

2016-08-02 00:28:56 +02:00
#ifndef TOOLTIP_H
#define TOOLTIP_H
#include <QString>
#include <QList>
#include <QPair>
2016-08-02 00:28:56 +02:00
class ToolTip
{
public:
void insert(const QString &key, const QString &value);
QString toString();
private:
QList<QPair<QString, QString> > _list;
2016-08-02 00:28:56 +02:00
};
#endif // TOOLTIP_H