Mon, 20 Jun 2022 02:04:51 +0300
Add base code for circular primitives
96 | 1 | #include "colorinput.h" |
2 | #include "ui_colorinput.h" | |
3 | ||
4 | ColorInput::ColorInput(QWidget *parent) : | |
5 | QWidget(parent), | |
6 | ui(new Ui::ColorInput) | |
7 | { | |
8 | ui->setupUi(this); | |
9 | } | |
10 | ||
11 | ColorInput::~ColorInput() | |
12 | { | |
13 | delete ui; | |
14 | } |