~singpolyma/biboumi

ref: bf7b05ef72bbdac97704d262ddfe418908267535 biboumi/src/irc/irc_user.hpp -rw-r--r-- 445 bytes
bf7b05ef — Florent Le Coz Implement the Bridge class to translate between the two protocols 9 years ago
                                                                                
bf7b05ef Florent Le Coz
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#ifndef IRC_USER_INCLUDED
# define IRC_USER_INCLUDED

#include <string>

/**
 * Keeps various information about one IRC channel user
 */
class IrcUser
{
public:
  explicit IrcUser(const std::string& name);

  std::string nick;
  std::string host;

private:
  IrcUser(const IrcUser&) = delete;
  IrcUser(IrcUser&&) = delete;
  IrcUser& operator=(const IrcUser&) = delete;
  IrcUser& operator=(IrcUser&&) = delete;
};

#endif // IRC_USER_INCLUDED