/* */ #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 SharedHandle& req, const SharedHandle& fileEntry, RequestGroup* requestGroup, const SharedHandle& httpConnection, DownloadEngine* e, const SharedHandle& s); virtual ~HttpProxyResponseCommand(); virtual Command* getNextCommand(); }; } // namespace aria2 #endif // D_HTTP_PROXY_RESPONSE_COMMAND_H