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