CLocalSocket.h 324 B

12345678910111213141516
  1. #pragma once
  2. #include <AK/Badge.h>
  3. #include <LibCore/CSocket.h>
  4. class CLocalServer;
  5. class CLocalSocket final : public CSocket {
  6. C_OBJECT(CLocalSocket)
  7. public:
  8. virtual ~CLocalSocket() override;
  9. private:
  10. explicit CLocalSocket(CObject* parent = nullptr);
  11. CLocalSocket(int fd, CObject* parent = nullptr);
  12. };