diff options
author | Alex Borisov <borisov.alexandr@rambler.ru> | 2011-12-01 03:11:09 +0200 |
---|---|---|
committer | Alex Borisov <borisov.alexandr@rambler.ru> | 2011-12-01 03:11:09 +0200 |
commit | 918defcaea2b570a927a2884ce0e720b03e32d8a (patch) | |
tree | 5c05b21f2c565a3ccc0124edf3af175657205d04 /client/FileOpThread.h | |
parent | 70dc6021943eacded7c26f2ca66375f64f19d819 (diff) |
FIX file transfer; FIX packet parsing bug; + many various fixes and improvements
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 |