X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=include%2Fparammode.h;h=06f127e11e8a501504ff474378917f047f16d2a7;hb=635cb9d65f6d7f6758ae8ed874da00c8d94b6e39;hp=b00082bd63778eafa93e67e381b324c9c5163492;hpb=4fc2f7199e964ba5112ecdb2613c6fd5c2eee638;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/include/parammode.h b/include/parammode.h index b00082bd6..06f127e11 100644 --- a/include/parammode.h +++ b/include/parammode.h @@ -1,7 +1,8 @@ /* * InspIRCd -- Internet Relay Chat Daemon * - * Copyright (C) 2014 Attila Molnar + * Copyright (C) 2018-2019 Sadie Powell + * Copyright (C) 2014-2015 Attila Molnar * * This file is part of InspIRCd. InspIRCd is free software: you can * redistribute it and/or modify it under the terms of the GNU General Public @@ -31,7 +32,8 @@ class CoreExport ParamModeBase : public ModeHandler ModeAction OnModeChange(User* source, User* dest, Channel* channel, std::string& param, bool adding) CXX11_OVERRIDE; // Does nothing by default - void OnUnset(User* source, Channel* chan) { } + virtual bool IsParameterSecret() { return false; } + virtual void OnUnset(User* source, Channel* chan) { } virtual ModeAction OnSet(User* source, Channel* chan, std::string& param) = 0; virtual void GetParameter(Channel* chan, std::string& out) = 0; }; @@ -62,8 +64,7 @@ class ParamMode : public ParamModeBase void OnUnsetInternal(User* source, Channel* chan) CXX11_OVERRIDE { - T* mh = static_cast(this); - mh->OnUnset(source, chan); + this->OnUnset(source, chan); ext.unset(chan); }