Proxmark3GUI/pm3process.h

20 lines
399 B
C
Raw Normal View History

2020-04-06 23:48:08 +08:00
#ifndef PM3PROCESS_H
#define PM3PROCESS_H
#include <QProcess>
#include <QString>
#include <QDebug>
2020-04-07 18:16:00 +08:00
#include <QtSerialPort/QSerialPortInfo>
#include <QtSerialPort/QSerialPort>
2020-04-06 23:48:08 +08:00
class PM3Process : public QProcess
{
Q_OBJECT
public:
explicit PM3Process(QObject* parent=nullptr);
2020-04-07 18:16:00 +08:00
bool start(const QString path, const QString port);
QStringList findPort();
2020-04-06 23:48:08 +08:00
};
#endif // PM3PROCESS_H