src/widgets/colorinput.cpp@f35843351601
src/widgets/colorinput.cpp
Sun, 12 Sep 2021 13:50:28 +0300
- author
- Teemu Piippo <teemu@hecknology.net>
- date
- Sun, 12 Sep 2021 13:50:28 +0300
- changeset 129
- f35843351601
- parent 96
-
165777a20dc7
- permissions
- -rw-r--r--
Add documentation
#include "colorinput.h"
#include "ui_colorinput.h"
ColorInput::ColorInput(QWidget *parent) :
QWidget(parent),
ui(new Ui::ColorInput)
{
ui->setupUi(this);
}
ColorInput::~ColorInput()
{
delete ui;
}