mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 15:40:19 +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:
|
|
};
|
|
|