26 lines
509 B
C++
26 lines
509 B
C++
#ifndef ____newview_h__
|
|
#define ____newview_h__
|
|
|
|
#include "HTTPPage.h"
|
|
|
|
namespace http {
|
|
|
|
class __newview : public HTTPPage {
|
|
|
|
int processCommand(std::string request,
|
|
core::Session *session,
|
|
HTTPSession *httpSession,
|
|
HTTPRequest &httpRequest,
|
|
std::stringstream &data) override {
|
|
|
|
|
|
httpRequest.response.addHeader("Content-Type", "text/html");
|
|
return 0;
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|