#ifndef FILE_OP_THREAD_H #define FILE_OP_THREAD_H #include class DownloadClient; /** * @brief Special thread to process all file operations */ class FileOpThread: public QThread { public: /** * @brief Initialize new FIleOpThread instance */ FileOpThread(): downloadClient(NULL) {} ~FileOpThread(); /** * @brief Thread main loop */ void run(); private: DownloadClient *downloadClient; }; #endif