src/widgets/colorinput.h

changeset 96
165777a20dc7
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/widgets/colorinput.h	Sun Jan 10 15:28:44 2021 +0200
@@ -0,0 +1,22 @@
+#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

mercurial