X-Git-Url: http://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/blobdiff_plain/999d57c20113c76bab27fc190c5fa394f9274629..c6c0449105c42313aac33e2dd619187a6d1cec8d:/client/proxguiqt.h diff --git a/client/proxguiqt.h b/client/proxguiqt.h index 8ea4d312..8a3b8cfc 100644 --- a/client/proxguiqt.h +++ b/client/proxguiqt.h @@ -11,6 +11,9 @@ #ifndef PROXGUI_QT #define PROXGUI_QT +#include +#include + #include #include #include @@ -115,4 +118,17 @@ class ProxGuiQT : public QObject void HideGraphWindowSignal(void); void ExitSignal(void); }; + + +class WorkerThread : public QThread { + Q_OBJECT; +public: + WorkerThread(char*, bool); + ~WorkerThread(); + void run(); +private: + char *script_cmds_file = NULL; + bool usb_present; +}; + #endif // PROXGUI_QT