mirror of
https://github.com/RGBCube/serenity
synced 2025-05-18 20:25:07 +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.
10 lines
171 B
C++
10 lines
171 B
C++
#include <LibGUI/GSocket.h>
|
|
|
|
class GTCPSocket final : public GSocket {
|
|
public:
|
|
explicit GTCPSocket(GObject* parent);
|
|
virtual ~GTCPSocket() override;
|
|
|
|
private:
|
|
};
|
|
|