mirror of
https://github.com/tumic0/GPXSee.git
synced 2025-07-18 04:44:23 +02:00
Optimized file access
This commit is contained in:
@ -4,17 +4,18 @@
|
||||
#include <QString>
|
||||
#include <QList>
|
||||
#include "common/kv.h"
|
||||
#include "data/imageinfo.h"
|
||||
|
||||
class ToolTip
|
||||
{
|
||||
public:
|
||||
void insert(const QString &key, const QString &value);
|
||||
void setImage(const QString &img) {_img = img;}
|
||||
QString toString();
|
||||
void setImage(const ImageInfo &image) {_img = image;}
|
||||
QString toString() const;
|
||||
|
||||
private:
|
||||
QList<KV> _list;
|
||||
QString _img;
|
||||
ImageInfo _img;
|
||||
};
|
||||
|
||||
#endif // TOOLTIP_H
|
||||
|
Reference in New Issue
Block a user