This commit is contained in:
2024-05-15 08:34:54 +08:00
commit dc8728599e
10 changed files with 5601 additions and 0 deletions

14
MainWidget.cpp Normal file
View File

@@ -0,0 +1,14 @@
#include "MainWidget.h"
#include "./ui_MainWidget.h"
MainWidget::MainWidget(QWidget *parent)
: QWidget(parent)
, ui(new Ui::MainWidget)
{
ui->setupUi(this);
}
MainWidget::~MainWidget()
{
delete ui;
}