1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2024-10-07 07:13:21 +02:00
GPXSee/src/palette.h

18 lines
176 B
C
Raw Normal View History

2016-02-28 09:32:54 +01:00
#ifndef PALETTE_H
#define PALETTE_H
2015-10-05 01:43:48 +02:00
#include <QColor>
2016-02-28 09:32:54 +01:00
class Palette
2015-10-05 01:43:48 +02:00
{
public:
2016-02-28 09:32:54 +01:00
Palette();
2015-10-05 01:43:48 +02:00
QColor color();
void reset();
private:
float _hueState;
};
2016-02-28 09:32:54 +01:00
#endif // PALLETE_H