mirror of
https://github.com/wh201906/Proxmark3GUI.git
synced 2025-04-21 03:56:19 +08:00
23 lines
273 B
C
23 lines
273 B
C
![]() |
#ifndef T55XXTAB_H
|
||
|
#define T55XXTAB_H
|
||
|
|
||
|
#include <QWidget>
|
||
|
|
||
|
namespace Ui {
|
||
|
class T55xxTab;
|
||
|
}
|
||
|
|
||
|
class T55xxTab : public QWidget
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
explicit T55xxTab(QWidget *parent = nullptr);
|
||
|
~T55xxTab();
|
||
|
|
||
|
private:
|
||
|
Ui::T55xxTab *ui;
|
||
|
};
|
||
|
|
||
|
#endif // T55XXTAB_H
|