#ifndef ____mainmenu_h__ #define ____mainmenu_h__ #include "HTTPPage.h" #include "IMFFormData.h" namespace http { class __mainmenu : public HTTPPage { public: __mainmenu(HTTPParameters &p) { page(p); } int page(HTTPParameters &p) override { p.data << "
" "
" " Setup Server Parameters" "
" "
" " View and Layout Designer" "
" "
" " Entry Points" "
" "
" " Data Entity Editor" "
" "
" " Work Flow Process Management" "
" "
"; p.httpRequest.response.addHeader(coreutils::IMFHeader("Content-Type", "text/html")); return true; } }; } #endif