/* */ #ifndef _D_DOWNLOAD_ENGINE_FACTORY_H_ #define _D_DOWNLOAD_ENGINE_FACTORY_H_ #include "common.h" #include "SharedHandle.h" #include namespace aria2 { class Logger; class Option; class RequestGroup; class DownloadEngine; class DownloadEngineFactory { private: Logger* _logger; public: DownloadEngineFactory(); SharedHandle newDownloadEngine(Option* op, const std::deque >& requestGroups); }; } // namespace aria2 #endif // _D_DOWNLOAD_ENGINE_FACTORY_H_