mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 11:18:11 +00:00
LibCore: Convert CLocalSocket to ObjectPtr
This commit is contained in:
parent
4298ba25c3
commit
c83da29a9d
13 changed files with 83 additions and 79 deletions
|
@ -8,7 +8,9 @@ class CLocalServer;
|
|||
class CLocalSocket final : public CSocket {
|
||||
C_OBJECT(CLocalSocket)
|
||||
public:
|
||||
explicit CLocalSocket(CObject* parent = nullptr);
|
||||
CLocalSocket(Badge<CLocalServer>, int fd, CObject* parent = nullptr);
|
||||
virtual ~CLocalSocket() override;
|
||||
|
||||
private:
|
||||
explicit CLocalSocket(CObject* parent = nullptr);
|
||||
CLocalSocket(int fd, CObject* parent = nullptr);
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue