/* */ #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, Command* nextCommand = 0); virtual ~StreamCheckIntegrityEntry(); virtual void onDownloadFinished(std::vector& commands, DownloadEngine* e); virtual void onDownloadIncomplete(std::vector& commands, DownloadEngine* e); }; typedef SharedHandle StreamCheckIntegrityEntryHandle; } // namespace aria2 #endif // _D_STREAM_CHECK_INTEGRITY_ENTRY_H_