Proxmark3GUI/ui/mf_uid_parameterdialog.h

28 lines
545 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>
2020-08-13 09:30:47 +08:00
namespace Ui
{
class MF_UID_parameterDialog;
}
class MF_UID_parameterDialog : public QDialog
{
Q_OBJECT
public:
2020-04-29 14:47:40 +08:00
explicit MF_UID_parameterDialog(const QString& uid, const QString& atqa, const QString& sak, QWidget *parent = nullptr);
~MF_UID_parameterDialog();
private:
Ui::MF_UID_parameterDialog *ui;
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