/* */ #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 SharedHandle& httpServer, DownloadEngine* e); public: HttpServerResponseCommand(cuid_t cuid, const SharedHandle& httpServer, DownloadEngine* e, const SharedHandle& socket); virtual ~HttpServerResponseCommand(); }; } // namespace aria2 #endif // D_HTTP_SERVER_RESPONSE_COMMAND_H