20 lines
338 B
C++
20 lines
338 B
C++
#ifndef __HTTPPage_h__
|
|
#define __HTTPPage_h__
|
|
|
|
#include "HTTPSession.h"
|
|
|
|
namespace http {
|
|
|
|
class HTTPPage : public core::Object {
|
|
|
|
public:
|
|
virtual int processCommand(std::string request, core::Session *session, HTTPSession *httpSession, std::stringstream &data) {
|
|
return false;
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|