初步多线程

This commit is contained in:
2024-01-02 22:40:51 +08:00
parent c4b977c31c
commit 42516f874a
6 changed files with 144 additions and 6 deletions

14
qr.cpp Normal file
View File

@@ -0,0 +1,14 @@
#include "qr.h"
#include "ui_qr.h"
QR::QR(QWidget *parent) :
QDialog(parent),
ui(new Ui::QR)
{
ui->setupUi(this);
}
QR::~QR()
{
delete ui;
}