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

@ -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