mirror of
https://github.com/wh201906/Proxmark3GUI.git
synced 2025-12-22 22:23:23 +08:00
15 lines
201 B
C++
15 lines
201 B
C++
|
|
#include "t55xxtab.h"
|
||
|
|
#include "ui_t55xxtab.h"
|
||
|
|
|
||
|
|
T55xxTab::T55xxTab(QWidget *parent) :
|
||
|
|
QWidget(parent),
|
||
|
|
ui(new Ui::T55xxTab)
|
||
|
|
{
|
||
|
|
ui->setupUi(this);
|
||
|
|
}
|
||
|
|
|
||
|
|
T55xxTab::~T55xxTab()
|
||
|
|
{
|
||
|
|
delete ui;
|
||
|
|
}
|