1
0
mirror of https://github.com/anope/anope.git synced 2026-07-05 09:33:12 +02:00
Files
anope/modules/webcpanel/pages/chanserv/drop.h
T
Sadie Powell 7d1047490e Consistently use #pragma once across all header files.
This replaces a mixture of no include guards, ANOPE_FOO_H, and FOO_H.
2022-01-04 12:10:32 +00:00

28 lines
477 B
C++

/*
* (C) 2003-2021 Anope Team
* Contact us at team@anope.org
*
* Please read COPYING and README for further details.
*/
#pragma once
namespace WebCPanel
{
namespace ChanServ
{
class Drop : public WebPanelProtectedPage
{
public:
Drop(const Anope::string &cat, const Anope::string &u);
bool OnRequest(HTTPProvider *, const Anope::string &, HTTPClient *, HTTPMessage &, HTTPReply &, NickAlias *, TemplateFileServer::Replacements &) override;
};
}
}