diff options
author | Adam <Adam@anope.org> | 2017-11-19 13:24:48 -0500 |
---|---|---|
committer | Adam <Adam@anope.org> | 2017-11-19 13:24:48 -0500 |
commit | 3fb9bb5118a5c3c6c916a48feed0e069867f3133 (patch) | |
tree | 16631512dbcff5ec3146d4f60a30e732ab6c64b1 /include/modules/hostserv/add.h | |
parent | d616bf3328eca31cb46b5d54e656b556dd513ed3 (diff) |
hostserv: expand events for newer vhost model
Diffstat (limited to 'include/modules/hostserv/add.h')
-rw-r--r-- | include/modules/hostserv/add.h | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/include/modules/hostserv/add.h b/include/modules/hostserv/add.h new file mode 100644 index 000000000..b930760ad --- /dev/null +++ b/include/modules/hostserv/add.h @@ -0,0 +1,36 @@ +/* + * Anope IRC Services + * + * Copyright (C) 2014-2017 Anope Team <team@anope.org> + * + * This file is part of Anope. Anope is free software; you can + * redistribute it and/or modify it under the terms of the GNU + * General Public License as published by the Free Software + * Foundation, version 2. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, see see <http://www.gnu.org/licenses/>. + */ + +namespace Event +{ + struct CoreExport SetVhost : Events + { + static constexpr const char *NAME = "setvhost"; + + using Events::Events; + + /** Called when a vhost is set + * @param source The setter of the vhost + * @param account The account the vhost is set on + * @param vhost The vhost + */ + virtual void OnSetVhost(CommandSource *source, NickServ::Account *account, HostServ::VHost *vhost) anope_abstract; + }; +} + |