diff options
Diffstat (limited to 'client/FileOpThread.h')
-rw-r--r-- | client/FileOpThread.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/client/FileOpThread.h b/client/FileOpThread.h index 29731c9..83a8dd0 100644 --- a/client/FileOpThread.h +++ b/client/FileOpThread.h @@ -5,6 +5,8 @@ #include <QThread> +class DownloadClient; + /** * @brief Special thread to process all file operations */ @@ -14,12 +16,17 @@ public: /** * @brief Initialize new FIleOpThread instance */ - FileOpThread() {} + FileOpThread(): downloadClient(NULL) {} + + ~FileOpThread(); /** * @brief Thread main loop */ void run(); + +private: + DownloadClient *downloadClient; }; #endif
\ No newline at end of file |