/* */ #ifndef _D_TORRENT_DOWNLOAD_ENGINE_H_ #define _D_TORRENT_DOWNLOAD_ENGINE_H_ #include "DownloadEngine.h" #include "TorrentMan.h" class TorrentDownloadEngine : public DownloadEngine { private: bool filenameFixed; protected: void onEndOfRun(); void afterEachIteration(); public: TorrentDownloadEngine():filenameFixed(false) {} virtual ~TorrentDownloadEngine() {} TorrentMan* torrentMan; bool isFilenameFixed() const { return filenameFixed; } }; #endif // _D_TORRENT_DOWNLOAD_ENGINE_H_