/* */ #ifndef D_SFTP_FINISH_DOWNLOAD_COMMAND_H #define D_SFTP_FINISH_DOWNLOAD_COMMAND_H #include "AbstractCommand.h" namespace aria2 { class SftpFinishDownloadCommand : public AbstractCommand { protected: virtual bool execute() CXX11_OVERRIDE; virtual bool executeInternal() CXX11_OVERRIDE; public: SftpFinishDownloadCommand(cuid_t cuid, const std::shared_ptr& req, const std::shared_ptr& fileEntry, RequestGroup* requestGroup, DownloadEngine* e, const std::shared_ptr& socket); virtual ~SftpFinishDownloadCommand(); }; } // namespace aria2 #endif // D_SFTP_FINISH_DOWNLOAD_COMMAND_H