anope

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

logout.h (406B)

      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 namespace WebCPanel
      9 {
     10 
     11 class Logout : public WebPanelProtectedPage
     12 {
     13  public:
     14 	Logout(const Anope::string &u);
     15 
     16 	bool OnRequest(HTTPProvider *, const Anope::string &, HTTPClient *, HTTPMessage &, HTTPReply &, NickAlias *, TemplateFileServer::Replacements &) anope_override;
     17 };
     18 
     19 }