anope

- supernets anope source code & configuration
git clone git://git.acid.vegas/anope.git
Log | Files | Refs | Archive | README

register.h (401B)

      1 /*
      2  * (C) 2003-2022 Anope Team
      3  * Contact us at team@anope.org
      4  *
      5  * Please read COPYING and README for further details.
      6  */
      7 
      8 #include "modules/httpd.h"
      9 
     10 namespace WebCPanel
     11 {
     12 
     13 class Register : public WebPanelPage
     14 {
     15  public:
     16 	Register(const Anope::string &u) : WebPanelPage(u) { }
     17 
     18 	bool OnRequest(HTTPProvider *, const Anope::string &, HTTPClient *, HTTPMessage &, HTTPReply &) anope_override;
     19 };
     20 
     21 }