#ifndef ____configure_h__ #define ____configure_h__ namespace http { class __configure : public HTTPPage { int processCommand(std::string request, core::Session *session, HTTPSession *httpSession, HTTPRequest &httpRequest, std::stringstream &data) override { data << "
" << std::endl; httpRequest.response.addHeader("Content-Type", "text/html"); return true; } }; } #endif