You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Proxmark3GUI/module/lf.h

29 lines
400 B
C++

#ifndef LF_H
#define LF_H
#include <QObject>
#include "common/util.h"
#include "ui_mainwindow.h"
class LF : public QObject
{
Q_OBJECT
public:
explicit LF(Ui::MainWindow *ui, Util *addr, QWidget *parent = nullptr);
void read();
void sniff();
void search();
void tune();
private:
QWidget* parent;
Ui::MainWindow *ui;
Util* util;
signals:
};
#endif // LF_H