mirror of
https://github.com/tumic0/GPXSee.git
synced 2024-11-28 13:41:16 +01:00
19 lines
266 B
C++
19 lines
266 B
C++
#ifndef TOOLTIP_H
|
|
#define TOOLTIP_H
|
|
|
|
#include <QString>
|
|
#include <QList>
|
|
#include <QPair>
|
|
|
|
class ToolTip
|
|
{
|
|
public:
|
|
void insert(const QString &key, const QString &value);
|
|
QString toString();
|
|
|
|
private:
|
|
QList<QPair<QString, QString> > _list;
|
|
};
|
|
|
|
#endif // TOOLTIP_H
|