1 /*
2  * (C) 2003-2020 Anope Team
3  * Contact us at team@anope.org
4  *
5  * Please read COPYING and README for further details.
6  */
7 
8 namespace WebCPanel
9 {
10 
11 namespace MemoServ
12 {
13 
14 class Memos : public WebPanelProtectedPage
15 {
16  public:
17 	Memos(const Anope::string &cat, const Anope::string &u);
18 
19 	bool OnRequest(HTTPProvider *, const Anope::string &, HTTPClient *, HTTPMessage &, HTTPReply &, NickAlias *, TemplateFileServer::Replacements &) anope_override;
20 };
21 
22 }
23 
24 }
25