MultiDiskAdaptor: Use std::unique_ptr for DiskWriterEntry and DiskWriter

MultiFileAllocationIterator is also rewritten so that it does not
requre copying DiskWriterEntry objects.
This commit is contained in:
Tatsuhiro Tsujikawa 2013-07-05 21:08:24 +09:00
parent e823fe8bb5
commit f000fd0cab
12 changed files with 236 additions and 275 deletions

View file

@ -34,13 +34,14 @@
/* copyright --> */
#include "DefaultDiskWriterFactory.h"
#include "DefaultDiskWriter.h"
#include "a2functional.h"
namespace aria2 {
std::shared_ptr<DiskWriter> DefaultDiskWriterFactory::newDiskWriter
std::unique_ptr<DiskWriter> DefaultDiskWriterFactory::newDiskWriter
(const std::string& filename)
{
return std::shared_ptr<DiskWriter>(new DefaultDiskWriter(filename));
return make_unique<DefaultDiskWriter>(filename);
}
} // namespace aria2