mirror of https://github.com/wh201906/Proxmark3GUI
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
299 B
C++
15 lines
299 B
C++
5 years ago
|
#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;
|
||
|
}
|