mirror of
https://github.com/tumic0/GPXSee.git
synced 2025-07-10 01:04:27 +02:00
Project structure refactoring
This commit is contained in:
18
src/GUI/tooltip.h
Normal file
18
src/GUI/tooltip.h
Normal file
@ -0,0 +1,18 @@
|
||||
#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
|
Reference in New Issue
Block a user