X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;ds=sidebyside;f=include%2Fhttp%2Fpages%2Fforumthreadspage.h;fp=include%2Fhttp%2Fpages%2Fforumthreadspage.h;h=71131c1b9882e66d71ebe9860fad4f54ec887bd6;hb=221236a4d3aac4144529d418ce368db5c98facb0;hp=0000000000000000000000000000000000000000;hpb=d5c9f7e6c1dd263dfc85a3cb5941a378a5ddd923;p=fms.git diff --git a/include/http/pages/forumthreadspage.h b/include/http/pages/forumthreadspage.h new file mode 100644 index 0000000..71131c1 --- /dev/null +++ b/include/http/pages/forumthreadspage.h @@ -0,0 +1,17 @@ +#ifndef _forumthreads_page_ +#define _forumthreads_page_ + +#include "forumpage.h" + +class ForumThreadsPage:public ForumPage +{ +public: + ForumThreadsPage(const std::string &templatestr):ForumPage(templatestr,"forumthreads.htm") {} + + IPageHandler *New() { return new ForumThreadsPage(m_template); } + +private: + const std::string GeneratePage(const std::string &method, const std::map &queryvars); +}; + +#endif // _forumthreads_page_