mirror of
https://github.com/wh201906/Proxmark3GUI.git
synced 2025-02-23 01:21:30 +08:00
15 lines
299 B
C++
15 lines
299 B
C++
#include "mf_uid_parameterdialog.h"
|
|
#include "ui_mf_uid_parameterdialog.h"
|
|
|
|
MF_UID_parameterDialog::MF_UID_parameterDialog(QWidget *parent) :
|
|
QDialog(parent),
|
|
ui(new Ui::MF_UID_parameterDialog)
|
|
{
|
|
ui->setupUi(this);
|
|
}
|
|
|
|
MF_UID_parameterDialog::~MF_UID_parameterDialog()
|
|
{
|
|
delete ui;
|
|
}
|