mirror of
https://github.com/wh201906/Proxmark3GUI.git
synced 2026-09-24 22:55:22 +08:00
17 lines
180 B
C++
17 lines
180 B
C++
|
|
#ifndef UTIL_H
|
||
|
|
#define UTIL_H
|
||
|
|
|
||
|
|
#include <QObject>
|
||
|
|
|
||
|
|
class Util : public QObject
|
||
|
|
{
|
||
|
|
Q_OBJECT
|
||
|
|
public:
|
||
|
|
explicit Util(QObject *parent = nullptr);
|
||
|
|
|
||
|
|
signals:
|
||
|
|
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif // UTIL_H
|