X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=include%2Fhttp%2Fpages%2Finsertedfilespage.h;fp=include%2Fhttp%2Fpages%2Finsertedfilespage.h;h=c09e638cd936049a66765911e1fff6fe76c880d9;hb=63376b2a82c3f6cdf2df56b1f134bd7df0aaab3a;hp=0000000000000000000000000000000000000000;hpb=e773b0ecb8a35c67cde5b2e82bbebb05224f34d0;p=fms.git diff --git a/include/http/pages/insertedfilespage.h b/include/http/pages/insertedfilespage.h new file mode 100644 index 0000000..c09e638 --- /dev/null +++ b/include/http/pages/insertedfilespage.h @@ -0,0 +1,18 @@ +#ifndef _insertedfilespage_ +#define _insertedfilespage_ + +#include "../ipagehandler.h" +#include "../../idatabase.h" + +class InsertedFilesPage:public IPageHandler,public IDatabase +{ +public: + InsertedFilesPage(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 // _insertedfilespage_