update:初始化项目

This commit is contained in:
2025-05-27 20:23:19 +08:00
commit b0c688a6c8
7 changed files with 614 additions and 0 deletions

14
src/mainwindow.cpp Normal file
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;
}