HTTPServer/HTTPPage.h
2019-05-31 14:25:19 -07:00

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