X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;ds=sidebyside;f=include%2Fhttp%2Fpages%2Fshowpendingmessagepage.h;fp=include%2Fhttp%2Fpages%2Fshowpendingmessagepage.h;h=2e99daba30ac2a5cc19eec01352d1b7e418a5e91;hb=59a5414ec47a2932a7802fcd1d98c4d80166564f;hp=0000000000000000000000000000000000000000;hpb=4e96d123460d6363cf7274e36bd9357768eb86ad;p=fms.git diff --git a/include/http/pages/showpendingmessagepage.h b/include/http/pages/showpendingmessagepage.h new file mode 100644 index 0000000..2e99dab --- /dev/null +++ b/include/http/pages/showpendingmessagepage.h @@ -0,0 +1,17 @@ +#ifndef _showpmessagepage_ +#define _showpmessagepage_ + +#include "../ipagehandler.h" + +class ShowPendingMessagePage:public IPageHandler +{ +public: + ShowPendingMessagePage(SQLite3DB::DB *db, const std::string &templatestr):IPageHandler(db,templatestr,"showpendingmessage.htm") {} + + IPageHandler *New() { return new ShowPendingMessagePage(m_db,m_template); } + +private: + const std::string GeneratePage(const std::string &method, const std::map &queryvars); +}; + +#endif // _showpmessage_