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:
Tatsuhiro Tsujikawa 2008-02-08 15:53:45 +00:00
parent d82e183d34
commit 1b7c198289
801 changed files with 12024 additions and 8627 deletions

View file

@ -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_