mirror of
https://gitee.com/gfdgd-xi/deep-wine-runner
synced 2025-05-14 12:09:54 +08:00
15 lines
159 B
C++
15 lines
159 B
C++
#include "qr.h"
|
|
#include "ui_qr.h"
|
|
|
|
QR::QR(QWidget *parent) :
|
|
QDialog(parent),
|
|
ui(new Ui::QR)
|
|
{
|
|
ui->setupUi(this);
|
|
}
|
|
|
|
QR::~QR()
|
|
{
|
|
delete ui;
|
|
}
|