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

18 lines
176 B
C++

#ifndef PALETTE_H
#define PALETTE_H
#include <QColor>
class Palette
{
public:
Palette();
QColor color();
void reset();
private:
float _hueState;
};
#endif // PALLETE_H