This commit is contained in:
2022-01-01 15:43:31 +08:00
parent 29579a3498
commit e304748541
5 changed files with 90 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
#include "widget.h"
#include "ui_widget.h"
Widget::Widget(QWidget *parent)
: QWidget(parent)
, ui(new Ui::Widget)
{
ui->setupUi(this);
}
Widget::~Widget()
{
delete ui;
}