This commit is contained in:
2026-02-25 18:34:49 +08:00
parent 227139355e
commit 5d8b3f7bdb
7 changed files with 231 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
#include "mainwindow.h"
#include "./ui_mainwindow.h"
MainWindow::MainWindow(QWidget *parent)
: QMainWindow(parent)
, ui(new Ui::MainWindow)
{
ui->setupUi(this);
}
MainWindow::~MainWindow()
{
delete ui;
}