src/widgets/colorinput.h@8d88adffb779
src/widgets/colorinput.h
Wed, 12 Apr 2023 01:53:42 +0300
- author
- Teemu Piippo <teemu.s.piippo@gmail.com>
- date
- Wed, 12 Apr 2023 01:53:42 +0300
- changeset 379
- 8d88adffb779
- parent 96
-
165777a20dc7
- permissions
- -rw-r--r--
Circular primitive type is now an enum class
#ifndef COLORINPUT_H
#define COLORINPUT_H
#include <QWidget>
namespace Ui {
class ColorInput;
}
class ColorInput : public QWidget
{
Q_OBJECT
public:
explicit ColorInput(QWidget *parent = nullptr);
~ColorInput();
private:
Ui::ColorInput *ui;
};
#endif // COLORINPUT_H