创建基础文件

This commit is contained in:
2024-01-21 21:59:04 +08:00
commit 8eec84a689
7 changed files with 186 additions and 0 deletions

15
mainwindow.cpp Normal file
View File

@@ -0,0 +1,15 @@
#include "mainwindow.h"
#include "ui_mainwindow.h"
MainWindow::MainWindow(QWidget *parent)
: QMainWindow(parent)
, ui(new Ui::MainWindow)
{
ui->setupUi(this);
}
MainWindow::~MainWindow()
{
delete ui;
}