~singpolyma/biboumi

ref: bf7b05ef72bbdac97704d262ddfe418908267535 biboumi/src/irc/irc_channel.cpp -rw-r--r-- 458 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
#include <irc/irc_channel.hpp>
#include <utils/make_unique.hpp>

IrcChannel::IrcChannel():
  joined(false),
  self(nullptr)
{
}

void IrcChannel::set_self(const std::string& name)
{
  this->self = std::make_unique<IrcUser>(name);
}

IrcUser* IrcChannel::add_user(const std::string& name)
{
  this->users.emplace_back(std::make_unique<IrcUser>(name));
  return this->users.back().get();
}

IrcUser* IrcChannel::get_self() const
{
  return this->self.get();
}