mirror of
https://github.com/wh201906/Proxmark3GUI.git
synced 2024-11-15 11:45:54 +08:00
33 lines
533 B
C
33 lines
533 B
C
|
#ifndef MAINWINDOW_H
|
|||
|
#define MAINWINDOW_H
|
|||
|
|
|||
|
#include <QMainWindow>
|
|||
|
#include <QProcess>
|
|||
|
#include <QDebug>
|
|||
|
#include "pm3process.h"
|
|||
|
|
|||
|
QT_BEGIN_NAMESPACE
|
|||
|
namespace Ui { class MainWindow; }
|
|||
|
QT_END_NAMESPACE
|
|||
|
|
|||
|
class MainWindow : public QMainWindow
|
|||
|
{
|
|||
|
Q_OBJECT
|
|||
|
|
|||
|
public:
|
|||
|
MainWindow(QWidget *parent = nullptr);
|
|||
|
~MainWindow();
|
|||
|
|
|||
|
private slots:
|
|||
|
void on_pushButton_clicked();
|
|||
|
|
|||
|
void on_pushButton_2_clicked();
|
|||
|
|
|||
|
void on_pushButton_3_clicked();
|
|||
|
|
|||
|
private:
|
|||
|
Ui::MainWindow *ui;
|
|||
|
PM3Process* pm3;
|
|||
|
};
|
|||
|
#endif // MAINWINDOW_H
|