Tue, 07 Jun 2022 01:37:26 +0300
Continue giant refactor
96 | 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 |