/* */ #ifndef D_STREAM_CHECK_INTEGRITY_ENTRY_H #define D_STREAM_CHECK_INTEGRITY_ENTRY_H #include "PieceHashCheckIntegrityEntry.h" namespace aria2 { class StreamCheckIntegrityEntry:public PieceHashCheckIntegrityEntry { public: StreamCheckIntegrityEntry(RequestGroup* requestGroup, std::unique_ptr nextCommand = std::unique_ptr()); virtual ~StreamCheckIntegrityEntry(); virtual void onDownloadFinished (std::vector>& commands, DownloadEngine* e) CXX11_OVERRIDE; virtual void onDownloadIncomplete (std::vector>& commands, DownloadEngine* e) CXX11_OVERRIDE; }; } // namespace aria2 #endif // D_STREAM_CHECK_INTEGRITY_ENTRY_H