IRCClient: Start working on a simple graphical IRC client.

This will be a nice way to exercise both LibGUI and the TCP/IP support. :^)
This commit is contained in:
Andreas Kling
2019-03-15 12:14:23 +01:00
parent f87dec1cbf
commit aa19735c5a
18 changed files with 779 additions and 1 deletions

View File

@@ -0,0 +1,11 @@
#include "IRCSubWindow.h"
IRCSubWindow::IRCSubWindow(const String& name, GWidget* parent)
: GWidget(parent)
, m_name(name)
{
}
IRCSubWindow::~IRCSubWindow()
{
}