binpack/MainWidget.cpp

16 lines
219 B
C++
Raw Normal View History

2024-04-11 12:40:19 +08:00
#include "MainWidget.h"
#include "./ui_MainWidget.h"
MainWidget::MainWidget(QWidget *parent)
: QWidget(parent)
, ui(new Ui::MainWidget)
{
ui->setupUi(this);
}
MainWidget::~MainWidget()
{
delete ui;
}