src/widgets/colorinput.h

changeset 96
165777a20dc7
equal deleted inserted replaced
95:06a1aef170aa 96:165777a20dc7
1 #ifndef COLORINPUT_H
2 #define COLORINPUT_H
3
4 #include <QWidget>
5
6 namespace Ui {
7 class ColorInput;
8 }
9
10 class ColorInput : public QWidget
11 {
12 Q_OBJECT
13
14 public:
15 explicit ColorInput(QWidget *parent = nullptr);
16 ~ColorInput();
17
18 private:
19 Ui::ColorInput *ui;
20 };
21
22 #endif // COLORINPUT_H

mercurial