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

@@ -4,11 +4,13 @@
#include "DHTTask.h"
#include "DHTNode.h"
namespace aria2 {
class MockDHTTask:public DHTTask {
public:
DHTNodeHandle _remoteNode;
SharedHandle<DHTNode> _remoteNode;
MockDHTTask(const DHTNodeHandle& remoteNode):_remoteNode(remoteNode) {}
MockDHTTask(const SharedHandle<DHTNode>& remoteNode):_remoteNode(remoteNode) {}
virtual ~MockDHTTask() {}
@@ -20,4 +22,6 @@ public:
}
};
} // namespace aria2
#endif // _D_MOCK_DHT_TASK_H_