mirror of
https://github.com/RGBCube/serenity
synced 2025-07-23 18:07:34 +00:00
11 lines
171 B
C++
11 lines
171 B
C++
#include "IRCSubWindow.h"
|
|
|
|
IRCSubWindow::IRCSubWindow(const String& name, GWidget* parent)
|
|
: GWidget(parent)
|
|
, m_name(name)
|
|
{
|
|
}
|
|
|
|
IRCSubWindow::~IRCSubWindow()
|
|
{
|
|
}
|