mirror of
https://github.com/wh201906/Proxmark3GUI.git
synced 2025-02-23 17:41:30 +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
|