X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fmodules%2Fm_exemptchanops.cpp;h=e3f8191172f6e119043019297057dc33045d4010;hb=fd0fa86da89ab4cefa778307088ef2552a05a170;hp=1f3dd3afbefb2cb03f58ea90fd96ff88a7865a12;hpb=ebe5b201aab71cf2ead1e068889be736314fbb73;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/modules/m_exemptchanops.cpp b/src/modules/m_exemptchanops.cpp index 1f3dd3afb..e3f819117 100644 --- a/src/modules/m_exemptchanops.cpp +++ b/src/modules/m_exemptchanops.cpp @@ -20,8 +20,6 @@ #include "inspircd.h" #include "listmode.h" -/* $ModDesc: Provides the ability to allow channel operators to be exempt from certain modes. */ - /** Handles channel mode +X */ class ExemptChanOps : public ListModeBase @@ -115,7 +113,7 @@ class ModuleExemptChanOps : public Module { } - void init() + void init() CXX11_OVERRIDE { ServerInstance->Modules->AddService(eh.ec); Implementation eventlist[] = { I_OnRehash, I_OnSyncChannel }; @@ -130,17 +128,17 @@ class ModuleExemptChanOps : public Module ServerInstance->OnCheckExemption = &ServerInstance->HandleOnCheckExemption; } - Version GetVersion() + Version GetVersion() CXX11_OVERRIDE { return Version("Provides the ability to allow channel operators to be exempt from certain modes.",VF_VENDOR); } - void OnRehash(User* user) + void OnRehash(User* user) CXX11_OVERRIDE { eh.ec.DoRehash(); } - void OnSyncChannel(Channel* chan, Module* proto, void* opaque) + void OnSyncChannel(Channel* chan, Module* proto, void* opaque) CXX11_OVERRIDE { eh.ec.DoSyncChannel(chan, proto, opaque); }