Let's make (git) history!

此提交包含在:
2018-11-03 17:12:20 +01:00
當前提交 3bfebfe8a8
共有 212 個檔案被更改,包括 11970 行新增0 行删除

26
handlers/handlerpageview.h 一般檔案
查看文件

@@ -0,0 +1,26 @@
#ifndef HANDLERPAGEVIEW_H
#define HANDLERPAGEVIEW_H
#include "handler.h"
#include "handlerpage.h"
#include "../page.h"
#include "../iparser.h"
class HandlerPageView : public HandlerPage
{
protected:
bool canAccess(std::string page) override;
std::string accessErrorMessage() override
{
return "You don't have permission to view this page";
}
std::string createIndexContent(IParser &parser, std::string content);
public:
Response handleRequest(PageDao &pageDao, std::string pagename, const Request &r) override;
~HandlerPageView() override
{
}
using HandlerPage::HandlerPage;
};
#endif // HANDLERPAGEVIEW_H