mirror of
https://github.com/wh201906/Proxmark3GUI.git
synced 2025-10-28 21:23:21 +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
|