/* */ #include "RequestGroupEntry.h" #include "RequestGroup.h" #include "Command.h" #include "DownloadContext.h" namespace aria2 { RequestGroupEntry::RequestGroupEntry(RequestGroup* requestGroup, std::unique_ptr nextCommand): requestGroup_(requestGroup), nextCommand_(std::move(nextCommand)) { requestGroup_->increaseNumCommand(); } RequestGroupEntry::~RequestGroupEntry() { requestGroup_->decreaseNumCommand(); } const std::unique_ptr& RequestGroupEntry::getNextCommand() const { return nextCommand_; } std::unique_ptr RequestGroupEntry::popNextCommand() { return std::move(nextCommand_); } void RequestGroupEntry::pushNextCommand(std::unique_ptr nextCommand) { nextCommand_ = std::move(nextCommand); } } // namespace aria2