/* */ #include "HttpProxyResponseCommand.h" #include "HttpRequestCommand.h" HttpProxyResponseCommand::HttpProxyResponseCommand(int cuid, const RequestHandle& req, const HttpConnectionHandle& httpConnection, DownloadEngine* e, const SocketHandle& s) :AbstractProxyResponseCommand(cuid, req, httpConnection, e, s) {} HttpProxyResponseCommand::~HttpProxyResponseCommand() {} Command* HttpProxyResponseCommand::getNextCommand() { return new HttpRequestCommand(cuid, req, e, socket); }