Files
Proxmark3GUI/src/ui/mf_uid_parameterdialog.h
T

30 lines
621 B
C++
Raw Normal View History

2020-04-29 14:47:40 +08:00
#ifndef MF_UID_PARAMETERDIALOG_H
#define MF_UID_PARAMETERDIALOG_H
#include <QDialog>
#include "common/util.h"
2020-08-13 09:30:47 +08:00
namespace Ui
{
class MF_UID_parameterDialog;
}
class MF_UID_parameterDialog : public QDialog
{
Q_OBJECT
public:
2021-09-19 21:00:23 +08:00
explicit MF_UID_parameterDialog(const QString& uid, const QString& atqa, const QString& sak, const QVariantMap& config, QWidget *parent = nullptr);
~MF_UID_parameterDialog();
private:
Ui::MF_UID_parameterDialog *ui;
2021-09-19 21:00:23 +08:00
QVariantMap config;
2020-04-29 14:47:40 +08:00
signals:
2020-08-13 09:30:47 +08:00
void sendCMD(const QString& cmd);
2020-04-29 14:47:40 +08:00
private slots:
void on_buttonBox_accepted();
};
#endif // MF_UID_PARAMETERDIALOG_H