Wrap Command object in std::unique_ptr

This commit is contained in:
Tatsuhiro Tsujikawa 2013-06-23 21:55:52 +09:00
parent bb5b7eeedb
commit fa9f3fb5a3
103 changed files with 555 additions and 713 deletions

View file

@ -40,9 +40,9 @@
namespace aria2 {
RequestGroupEntry::RequestGroupEntry(RequestGroup* requestGroup,
Command* nextCommand):
std::unique_ptr<Command> nextCommand):
requestGroup_(requestGroup),
nextCommand_(nextCommand)
nextCommand_(std::move(nextCommand))
{
requestGroup_->increaseNumCommand();
}
@ -50,20 +50,16 @@ RequestGroupEntry::RequestGroupEntry(RequestGroup* requestGroup,
RequestGroupEntry::~RequestGroupEntry()
{
requestGroup_->decreaseNumCommand();
delete nextCommand_;
}
Command* RequestGroupEntry::popNextCommand()
std::unique_ptr<Command> RequestGroupEntry::popNextCommand()
{
Command* temp = nextCommand_;
nextCommand_ = 0;
return temp;
return std::move(nextCommand_);
}
void RequestGroupEntry::pushNextCommand(Command* nextCommand)
void RequestGroupEntry::pushNextCommand(std::unique_ptr<Command> nextCommand)
{
delete nextCommand_;
nextCommand_ = nextCommand;
nextCommand_ = std::move(nextCommand);
}
} // namespace aria2