公告板
版本库
filestore
活动
搜索
登录
main
/
test-upload
测试项目上传下载
概况
操作记录
提交次数
目录
文档
派生
对比
blame
|
历史
|
原始文档
first commit
xuetao
2025-05-08
d6b6b171390b2471763a7f0ba9b25bb5ab60870b
[test-upload.git]
/
QTTest
/
mainwindow.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
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;
}