#ifndef __HTTPPage_h__ #define __HTTPPage_h__ #include "HTTPSession.h" #include "HTTPRequest.h" #include "TCPSession.h" #include "Log.h" namespace http { class HTTPPage { public: virtual int processCommand(HTTPRequest *httpRequest, core::TCPSession *session, HTTPSession *httpSession, std::stringstream &data) { return false; } }; } #endif