1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-23 18:07:34 +00:00
serenity/Applications/IRCClient/IRCSubWindow.cpp
Andreas Kling aa19735c5a IRCClient: Start working on a simple graphical IRC client.
This will be a nice way to exercise both LibGUI and the TCP/IP support. :^)
2019-03-15 12:14:23 +01:00

11 lines
171 B
C++

#include "IRCSubWindow.h"
IRCSubWindow::IRCSubWindow(const String& name, GWidget* parent)
: GWidget(parent)
, m_name(name)
{
}
IRCSubWindow::~IRCSubWindow()
{
}