mirror of
https://github.com/wh201906/Proxmark3GUI.git
synced 2024-11-14 19:25:45 +08:00
23 lines
385 B
C
23 lines
385 B
C
|
#ifndef MF_UID_PARAMETERDIALOG_H
|
||
|
#define MF_UID_PARAMETERDIALOG_H
|
||
|
|
||
|
#include <QDialog>
|
||
|
|
||
|
namespace Ui {
|
||
|
class MF_UID_parameterDialog;
|
||
|
}
|
||
|
|
||
|
class MF_UID_parameterDialog : public QDialog
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
explicit MF_UID_parameterDialog(QWidget *parent = nullptr);
|
||
|
~MF_UID_parameterDialog();
|
||
|
|
||
|
private:
|
||
|
Ui::MF_UID_parameterDialog *ui;
|
||
|
};
|
||
|
|
||
|
#endif // MF_UID_PARAMETERDIALOG_H
|