]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - include/modules/ircv3.h
Merge pull request #1443 from B00mX0r/master+filtershun
[user/henk/code/inspircd.git] / include / modules / ircv3.h
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2015 Attila Molnar <attilamolnar@hush.com>
5  *
6  * This file is part of InspIRCd.  InspIRCd is free software: you can
7  * redistribute it and/or modify it under the terms of the GNU General Public
8  * License as published by the Free Software Foundation, version 2.
9  *
10  * This program is distributed in the hope that it will be useful, but WITHOUT
11  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
12  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
13  * details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
17  */
18
19
20 #pragma once
21
22 namespace IRCv3
23 {
24         class WriteNeighborsWithCap;
25 }
26
27 class IRCv3::WriteNeighborsWithCap : public User::ForEachNeighborHandler
28 {
29         const Cap::Capability& cap;
30         const std::string& msg;
31
32         void Execute(LocalUser* user) CXX11_OVERRIDE
33         {
34                 if (cap.get(user))
35                         user->Write(msg);
36         }
37
38  public:
39         WriteNeighborsWithCap(User* user, const std::string& message, const Cap::Capability& capability)
40                 : cap(capability)
41                 , msg(message)
42         {
43                 user->ForEachNeighbor(*this, false);
44         }
45 };