1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2024-10-07 07:13:21 +02:00
GPXSee/src/colorshop.h
2015-10-05 01:43:48 +02:00

18 lines
186 B
C++

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