mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-06 08:36:15 +00:00
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:
11
Applications/IRCClient/IRCSubWindow.cpp
Normal file
11
Applications/IRCClient/IRCSubWindow.cpp
Normal file
@@ -0,0 +1,11 @@
|
||||
#include "IRCSubWindow.h"
|
||||
|
||||
IRCSubWindow::IRCSubWindow(const String& name, GWidget* parent)
|
||||
: GWidget(parent)
|
||||
, m_name(name)
|
||||
{
|
||||
}
|
||||
|
||||
IRCSubWindow::~IRCSubWindow()
|
||||
{
|
||||
}
|
||||
Reference in New Issue
Block a user