]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - include/server.h
Move User::SendAll() into core_privmsg
[user/henk/code/inspircd.git] / include / server.h
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2014 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 class CoreExport Server : public classbase
23 {
24  protected:
25         /** The name of this server
26          */
27         const std::string name;
28
29         /** The description of this server
30          */
31         const std::string description;
32
33         /** True if this server is ulined
34          */
35         bool uline;
36
37         /** True if this server is a silent uline, i.e. silent="true" in the uline block
38          */
39         bool silentuline;
40
41  public:
42         Server(const std::string& srvname, const std::string& srvdesc)
43                 : name(srvname), description(srvdesc), uline(false), silentuline(false) { }
44
45         /**
46          * Returns the name of this server
47          * @return The name of this server, for example "irc.inspircd.org".
48          */
49         const std::string& GetName() const { return name; }
50
51         /** Returns the description (GECOS) of this server
52          * @return The description of this server
53          */
54         const std::string& GetDesc() const { return description; }
55
56         /**
57          * Checks whether this server is ulined
58          * @return True if this server is ulined, false otherwise.
59          */
60         bool IsULine() const { return uline; }
61
62         /**
63          * Checks whether this server is a silent uline
64          * Silent uline servers introduce, quit and oper up users without a snotice being generated.
65          * @return True if this server is a silent uline, false otherwise.
66          */
67         bool IsSilentULine() const { return silentuline; }
68 };