/* */ #ifndef D_CHECK_INTEGRITY_DISPATCHER_COMMAND_H #define D_CHECK_INTEGRITY_DISPATCHER_COMMAND_H #include "SequentialDispatcherCommand.h" #include "CheckIntegrityMan.h" namespace aria2 { class CheckIntegrityEntry; class CheckIntegrityDispatcherCommand : public SequentialDispatcherCommand { public: CheckIntegrityDispatcherCommand(cuid_t cuid, CheckIntegrityMan* checkMan, DownloadEngine* e); protected: virtual std::unique_ptr createCommand(CheckIntegrityEntry* entry) CXX11_OVERRIDE; }; } // namespace aria2 #endif // D_CHECK_INTEGRITY_DISPATCHER_COMMAND_H