新建了一个工程

This commit is contained in:
2021-02-05 18:56:07 +08:00
parent f63bfe3d3e
commit 759a50460e
17 changed files with 2232 additions and 0 deletions
+15
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;
}