mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 18:28:12 +00:00
17 lines
287 B
C++
17 lines
287 B
C++
#pragma once
|
|
|
|
#include <LibGUI/GWindow.h>
|
|
#include <LibGUI/GWidget.h>
|
|
#include "IRCClient.h"
|
|
|
|
class IRCAppWindow : public GWindow {
|
|
public:
|
|
IRCAppWindow();
|
|
virtual ~IRCAppWindow() override;
|
|
|
|
private:
|
|
void setup_client();
|
|
void setup_widgets();
|
|
|
|
IRCClient m_client;
|
|
};
|