mirror of
https://github.com/SerenityOS/serenity
synced 2026-05-11 01:22:12 +02:00
11 lines
182 B
C++
11 lines
182 B
C++
#include <LibCore/CSocket.h>
|
|
|
|
class CTCPSocket final : public CSocket {
|
|
public:
|
|
explicit CTCPSocket(CObject* parent = nullptr);
|
|
virtual ~CTCPSocket() override;
|
|
|
|
private:
|
|
};
|
|
|