mirror of
https://github.com/tumic0/GPXSee.git
synced 2024-11-24 11:45:53 +01:00
18 lines
176 B
C++
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
|