1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 05:57:44 +00:00

IRClient: Add a member list to channel views.

This commit is contained in:
Andreas Kling 2019-03-15 18:25:51 +01:00
parent 08c15be0ca
commit 491aa112ab
7 changed files with 115 additions and 3 deletions

View file

@ -1,5 +1,6 @@
#include "IRCChannel.h"
#include "IRCClient.h"
#include "IRCChannelMemberListModel.h"
#include <stdio.h>
#include <time.h>
@ -8,6 +9,7 @@ IRCChannel::IRCChannel(IRCClient& client, const String& name)
, m_name(name)
, m_log(IRCLogBuffer::create())
{
m_member_model = new IRCChannelMemberListModel(*this);
}
IRCChannel::~IRCChannel()