27 lines
478 B
C++
27 lines
478 B
C++
#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
|