/* */ #ifndef D_HTTP_SERVER_RESPONSE_COMMAND_H #define D_HTTP_SERVER_RESPONSE_COMMAND_H #include "AbstractHttpServerResponseCommand.h" namespace aria2 { class HttpServerResponseCommand : public AbstractHttpServerResponseCommand { protected: virtual void afterSend(const std::shared_ptr& httpServer, DownloadEngine* e); public: HttpServerResponseCommand(cuid_t cuid, const std::shared_ptr& httpServer, DownloadEngine* e, const std::shared_ptr& socket); virtual ~HttpServerResponseCommand(); }; } // namespace aria2 #endif // D_HTTP_SERVER_RESPONSE_COMMAND_H