/* */ #ifndef _D_HTTP_REQUEST_COMMAND_H_ #define _D_HTTP_REQUEST_COMMAND_H_ #include "AbstractCommand.h" class HttpRequestCommand:public AbstractCommand { protected: bool executeInternal(Segment segment); public: HttpRequestCommand(int cuid, Request* req, DownloadEngine* e, Socket* s); ~HttpRequestCommand(); }; #endif // _D_HTTP_REQUEST_COMMAND_H_