#include IrcChannel::IrcChannel(): joined(false), self(nullptr) { } void IrcChannel::set_self(const std::string& name) { this->self = std::make_unique(name); } IrcUser* IrcChannel::add_user(const std::string& name, const std::map prefix_to_mode) { this->users.emplace_back(std::make_unique(name, prefix_to_mode)); return this->users.back().get(); } IrcUser* IrcChannel::get_self() const { return this->self.get(); } IrcUser* IrcChannel::find_user(const std::string& name) const { IrcUser user(name); for (const auto& u: this->users) { if (u->nick == user.nick) return u.get(); } return nullptr; } void IrcChannel::remove_user(const IrcUser* user) { for (auto it = this->users.begin(); it != this->users.end(); ++it) { IrcUser* u = it->get(); if (u->nick == user->nick) { this->users.erase(it); break ; } } } void IrcChannel::remove_all_users() { this->users.clear(); this->self.reset(); } DummyIrcChannel::DummyIrcChannel(): IrcChannel(), joining(false) { }