mirror of
https://github.com/aria2/aria2.git
synced 2025-04-04 21:17:41 +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
|
@ -5,9 +5,10 @@
|
|||
#include "RequestGroup.h"
|
||||
#include "Option.h"
|
||||
#include "DownloadResult.h"
|
||||
#include "FileEntry.h"
|
||||
#include <cppunit/extensions/HelperMacros.h>
|
||||
|
||||
using namespace std;
|
||||
namespace aria2 {
|
||||
|
||||
class RequestGroupManTest : public CppUnit::TestFixture {
|
||||
|
||||
|
@ -20,8 +21,8 @@ private:
|
|||
public:
|
||||
void setUp()
|
||||
{
|
||||
CUIDCounterHandle counter = new CUIDCounter();
|
||||
CUIDCounterSingletonHolder::instance(counter);
|
||||
SharedHandle<CUIDCounter> counter = new CUIDCounter();
|
||||
SingletonHolder<SharedHandle<CUIDCounter> >::instance(counter);
|
||||
}
|
||||
|
||||
void testIsSameFileBeingDownloaded();
|
||||
|
@ -35,14 +36,14 @@ void RequestGroupManTest::testIsSameFileBeingDownloaded()
|
|||
{
|
||||
Option option;
|
||||
|
||||
Strings uris;
|
||||
std::deque<std::string> uris;
|
||||
uris.push_back("http://localhost/aria2.tar.bz2");
|
||||
RequestGroupHandle rg1 = new RequestGroup(&option, uris);
|
||||
RequestGroupHandle rg2 = new RequestGroup(&option, uris);
|
||||
SharedHandle<RequestGroup> rg1 = new RequestGroup(&option, uris);
|
||||
SharedHandle<RequestGroup> rg2 = new RequestGroup(&option, uris);
|
||||
|
||||
SingleFileDownloadContextHandle dctx1 =
|
||||
SharedHandle<SingleFileDownloadContext> dctx1 =
|
||||
new SingleFileDownloadContext(0, 0, "aria2.tar.bz2");
|
||||
SingleFileDownloadContextHandle dctx2 =
|
||||
SharedHandle<SingleFileDownloadContext> dctx2 =
|
||||
new SingleFileDownloadContext(0, 0, "aria2.tar.bz2");
|
||||
|
||||
rg1->setDownloadContext(dctx1);
|
||||
|
@ -66,3 +67,5 @@ void RequestGroupManTest::testGetInitialCommands()
|
|||
{
|
||||
// TODO implement later
|
||||
}
|
||||
|
||||
} // namespace aria2
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue