X-Git-Url: https://git.pterodactylus.net/?p=fms.git;a=blobdiff_plain;f=include%2Fhttp%2Fpages%2Fshowcaptchapage.h;h=739e4125682053c23e6dec63ade83b9a2511baf8;hp=121ad9a43b639e5f21d20546a2289cbd8bc1f50d;hb=dec33c63afafabf83c3039e916725cac6faef9b3;hpb=9b22dd53fe62e312c1647310b7ec43aa127090af diff --git a/include/http/pages/showcaptchapage.h b/include/http/pages/showcaptchapage.h index 121ad9a..739e412 100644 --- a/include/http/pages/showcaptchapage.h +++ b/include/http/pages/showcaptchapage.h @@ -8,9 +8,13 @@ class ShowCaptchaPage:public IPageHandler,public IDatabase { public: + void handleRequest(Poco::Net::HTTPServerRequest &request, Poco::Net::HTTPServerResponse &response); + + IPageHandler *New() { return new ShowCaptchaPage; } + private: const bool WillHandleURI(const std::string &uri); - const std::string GeneratePage(const std::string &method, const std::map &queryvars); + const std::string GeneratePage(const std::string &method, const std::map &queryvars) {return "";} };