summaryrefslogtreecommitdiff
path: root/Applications/IRCClient/IRCSubWindow.h
blob: c62afc133dcd3255af619ce61e98cabc81d0ff0d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#pragma once

#include <LibGUI/GWidget.h>

class IRCSubWindow : public GWidget {
public:
    explicit IRCSubWindow(const String& name, GWidget* parent);
    virtual ~IRCSubWindow() override;

    String name() const { return m_name; }
    void set_name(const String& name) { m_name = name; }

private:
    String m_name;
};