/* */ #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) CXX11_OVERRIDE; 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