mirror of
https://github.com/RGBCube/serenity
synced 2025-05-19 02:15:08 +00:00
10 lines
182 B
C++
10 lines
182 B
C++
#include <LibCore/CSocket.h>
|
|
|
|
class CTCPSocket final : public CSocket {
|
|
public:
|
|
explicit CTCPSocket(CObject* parent = nullptr);
|
|
virtual ~CTCPSocket() override;
|
|
|
|
private:
|
|
};
|
|
|