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