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