/* */ #ifndef D_HTTP_PROXY_RESPONSE_COMMAND_H #define D_HTTP_PROXY_RESPONSE_COMMAND_H #include "AbstractProxyResponseCommand.h" namespace aria2 { class SocketCore; class HttpProxyResponseCommand : public AbstractProxyResponseCommand { public: HttpProxyResponseCommand(cuid_t cuid, const std::shared_ptr& req, const std::shared_ptr& fileEntry, RequestGroup* requestGroup, const std::shared_ptr& httpConnection, DownloadEngine* e, const std::shared_ptr& s); virtual ~HttpProxyResponseCommand(); virtual std::unique_ptr getNextCommand() CXX11_OVERRIDE; }; } // namespace aria2 #endif // D_HTTP_PROXY_RESPONSE_COMMAND_H