mirror of
https://github.com/aria2/aria2.git
synced 2025-04-06 05:57:36 +03:00
Wrap Command object in std::unique_ptr
This commit is contained in:
parent
bb5b7eeedb
commit
fa9f3fb5a3
103 changed files with 555 additions and 713 deletions
|
@ -43,15 +43,16 @@ class StreamCheckIntegrityEntry:public PieceHashCheckIntegrityEntry
|
|||
{
|
||||
public:
|
||||
StreamCheckIntegrityEntry(RequestGroup* requestGroup,
|
||||
Command* nextCommand = 0);
|
||||
std::unique_ptr<Command> nextCommand =
|
||||
std::unique_ptr<Command>());
|
||||
|
||||
virtual ~StreamCheckIntegrityEntry();
|
||||
|
||||
virtual void onDownloadFinished(std::vector<Command*>& commands,
|
||||
DownloadEngine* e);
|
||||
virtual void onDownloadFinished
|
||||
(std::vector<std::unique_ptr<Command>>& commands, DownloadEngine* e);
|
||||
|
||||
virtual void onDownloadIncomplete(std::vector<Command*>& commands,
|
||||
DownloadEngine* e);
|
||||
virtual void onDownloadIncomplete
|
||||
(std::vector<std::unique_ptr<Command>>& commands, DownloadEngine* e);
|
||||
};
|
||||
|
||||
} // namespace aria2
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue