X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=include%2Fhttp%2Fpages%2Fexecquerypage.h;fp=include%2Fhttp%2Fpages%2Fexecquerypage.h;h=4679ec2b53f10570b32f3bdd963ee0a869debda3;hb=52c0819bfc1d083c6e0738f75f0d7eeba521295a;hp=0000000000000000000000000000000000000000;hpb=df316253862dc50e8e5a790d9634ef90be37badb;p=fms.git diff --git a/include/http/pages/execquerypage.h b/include/http/pages/execquerypage.h new file mode 100644 index 0000000..4679ec2 --- /dev/null +++ b/include/http/pages/execquerypage.h @@ -0,0 +1,18 @@ +#ifndef _execquerypage_ +#define _execquerypage_ + +#include "../ipagehandler.h" +#include "../../idatabase.h" + +class ExecQueryPage:public IPageHandler,public IDatabase +{ +public: + ExecQueryPage(const std::string &templatestr):IPageHandler(templatestr) {} + +private: + const bool WillHandleURI(const std::string &uri); + const std::string GeneratePage(const std::string &method, const std::map &queryvars); + +}; + +#endif // _execquerypage_