Files
newspark110/widget.cpp
Chenwenxuan edac2715f0 init
2024-03-06 14:54:30 +08:00

17 lines
190 B
C++

#include "widget.h"
#include "ui_widget.h"
Widget::Widget(QWidget *parent)
: QWidget(parent)
, ui(new Ui::Widget)
{
ui->setupUi(this);
}
Widget::~Widget()
{
delete ui;
}