mirror of
https://gitee.com/gfdgd-xi/deep-wine-runner
synced 2025-05-16 13:09:54 +08:00
23 lines
225 B
C++
23 lines
225 B
C++
#ifndef QR_H
|
|
#define QR_H
|
|
|
|
#include <QDialog>
|
|
|
|
namespace Ui {
|
|
class QR;
|
|
}
|
|
|
|
class QR : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit QR(QWidget *parent = nullptr);
|
|
~QR();
|
|
|
|
private:
|
|
Ui::QR *ui;
|
|
};
|
|
|
|
#endif // QR_H
|