diff options
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 |