diff options
author | Gluzskiy Alexandr <sss@sss.chaoslab.ru> | 2011-11-27 20:34:04 +0200 |
---|---|---|
committer | Gluzskiy Alexandr <sss@sss.chaoslab.ru> | 2011-11-27 20:34:04 +0200 |
commit | 0d96f9d417250b77a6f5366f3b14035c42782d90 (patch) | |
tree | d035590083cbf27f824f1a7c00c822ed812b4f6d /client/FileOpThread.h | |
parent | 8ce6d0ce269723658f8b84edaebf9d24afc3a251 (diff) | |
parent | a19e9744751d4278f56cb3b6ff885c0068f03a3d (diff) |
Merge branch 'master' of ssh://sss.chaoslab.ru//home/private_git/proxy_ui
Diffstat (limited to 'client/FileOpThread.h')
-rw-r--r-- | client/FileOpThread.h | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/client/FileOpThread.h b/client/FileOpThread.h new file mode 100644 index 0000000..29731c9 --- /dev/null +++ b/client/FileOpThread.h @@ -0,0 +1,25 @@ + + +#ifndef FILE_OP_THREAD_H +#define FILE_OP_THREAD_H + +#include <QThread> + +/** + * @brief Special thread to process all file operations + */ +class FileOpThread: public QThread +{ +public: + /** + * @brief Initialize new FIleOpThread instance + */ + FileOpThread() {} + + /** + * @brief Thread main loop + */ + void run(); +}; + +#endif
\ No newline at end of file |