ZNC
Versions: latest readthedocs-test
Nick.h
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2004-2017 ZNC, see the NOTICE file for details.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 
17 #ifndef ZNC_NICK_H
18 #define ZNC_NICK_H
19 
20 #include <znc/zncconfig.h>
21 #include <znc/ZNCString.h>
22 #include <vector>
23 
24 // Forward Decl
25 class CIRCNetwork;
26 class CChan;
27 // !Forward Decl
28 
29 class CNick {
30  public:
31  CNick();
32  CNick(const CString& sNick);
33  ~CNick();
34 
35  CNick(const CNick&) = default;
36  CNick& operator=(const CNick&) = default;
37 
38  void Reset();
39  void Parse(const CString& sNickMask);
40  CString GetHostMask() const;
41  size_t GetCommonChans(std::vector<CChan*>& vChans,
42  CIRCNetwork* pNetwork) const;
43  bool NickEquals(const CString& nickname) const;
44 
45  // Setters
46  void SetNetwork(CIRCNetwork* pNetwork);
47  void SetNick(const CString& s);
48  void SetIdent(const CString& s);
49  void SetHost(const CString& s);
50  bool AddPerm(unsigned char uPerm);
51  bool RemPerm(unsigned char uPerm);
52  // !Setters
53 
54  // Getters
55  CString GetPermStr() const;
56  unsigned char GetPermChar() const;
57  bool HasPerm(unsigned char uPerm) const;
58  const CString& GetNick() const;
59  const CString& GetIdent() const;
60  const CString& GetHost() const;
61  CString GetNickMask() const;
62  // !Getters
63 
64  void Clone(const CNick& SourceNick);
65 
66  private:
67  protected:
73 };
74 
75 #endif // !ZNC_NICK_H
bool RemPerm(unsigned char uPerm)
void SetNetwork(CIRCNetwork *pNetwork)
CString m_sNick
Definition: Nick.h:70
size_t GetCommonChans(std::vector< CChan * > &vChans, CIRCNetwork *pNetwork) const
CString m_sHost
Definition: Nick.h:72
CString m_sChanPerms
Definition: Nick.h:68
const CString & GetNick() const
const CString & GetIdent() const
Definition: Nick.h:29
bool NickEquals(const CString &nickname) const
void SetNick(const CString &s)
CString GetNickMask() const
Definition: IRCNetwork.h:40
CString m_sIdent
Definition: Nick.h:71
String class that is used inside ZNC.
Definition: ZNCString.h:68
void Reset()
void Parse(const CString &sNickMask)
bool AddPerm(unsigned char uPerm)
bool HasPerm(unsigned char uPerm) const
CIRCNetwork * m_pNetwork
Definition: Nick.h:69
void SetHost(const CString &s)
void Clone(const CNick &SourceNick)
void SetIdent(const CString &s)
CString GetHostMask() const
const CString & GetHost() const
CString GetPermStr() const
unsigned char GetPermChar() const
CNick & operator=(const CNick &)=default
Definition: Chan.h:34