mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-01 14:18:15 +00:00
And use these to do the line-by-line reading automagically instead of having that logic in IRCClient. This will definitely come in handy.
11 lines
171 B
C++
11 lines
171 B
C++
#include <LibGUI/GSocket.h>
|
|
|
|
class GTCPSocket final : public GSocket {
|
|
public:
|
|
explicit GTCPSocket(GObject* parent);
|
|
virtual ~GTCPSocket() override;
|
|
|
|
private:
|
|
};
|
|
|