mirror of
https://github.com/aria2/aria2.git
synced 2025-04-06 14:07:37 +03:00
2008-02-08 Tatsuhiro Tsujikawa <tujikawa at rednoah dot com>
Removed "using namespace std;" from all sources. Appended std:: prefix to c++ standard classes. Included string.h where mem* function are used.
This commit is contained in:
parent
d82e183d34
commit
1b7c198289
801 changed files with 12024 additions and 8627 deletions
|
@ -37,24 +37,28 @@
|
|||
|
||||
#include "AbstractCommand.h"
|
||||
|
||||
namespace aria2 {
|
||||
|
||||
class HttpConnection;
|
||||
typedef SharedHandle<HttpConnection> HttpConnectionHandle;
|
||||
class SocketCore;
|
||||
|
||||
class AbstractProxyResponseCommand : public AbstractCommand {
|
||||
protected:
|
||||
HttpConnectionHandle httpConnection;
|
||||
SharedHandle<HttpConnection> httpConnection;
|
||||
|
||||
virtual bool executeInternal();
|
||||
public:
|
||||
AbstractProxyResponseCommand(int cuid,
|
||||
const RequestHandle& req,
|
||||
const SharedHandle<Request>& req,
|
||||
RequestGroup* requestGroup,
|
||||
const HttpConnectionHandle& httpConnection,
|
||||
const SharedHandle<HttpConnection>& httpConnection,
|
||||
DownloadEngine* e,
|
||||
const SocketHandle& s);
|
||||
const SharedHandle<SocketCore>& s);
|
||||
virtual ~AbstractProxyResponseCommand();
|
||||
|
||||
virtual Command* getNextCommand() = 0;
|
||||
};
|
||||
|
||||
} // namespace aria2
|
||||
|
||||
#endif // _D_ABSTRACT_PROXY_RESPONSE_COMMAND_H_
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue