diff options
author | Andreas Kling <kling@serenityos.org> | 2021-05-13 22:34:57 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-05-13 23:28:40 +0200 |
commit | 3d3a5b431f1836b6905e5ac2408389916b3e1ce1 (patch) | |
tree | 59ea755abac22054ac43de3878b1fe694ed3a32d /Userland/Services/InspectorServer/Forward.h | |
parent | 3c3b384c807ebd58a4e437543debaf70b84aab39 (diff) | |
download | serenity-3d3a5b431f1836b6905e5ac2408389916b3e1ce1.zip |
Services: Add InspectorServer to reverse the direction of Inspector
This service daemon will act as an intermediary between the Inspector
program and the inspectable programs it wants to inspect.
Programs can make themselves available for inspection by connecting
to /tmp/portal/inspectables using the Core::EventLoop RPC protocol.
Diffstat (limited to 'Userland/Services/InspectorServer/Forward.h')
-rw-r--r-- | Userland/Services/InspectorServer/Forward.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Userland/Services/InspectorServer/Forward.h b/Userland/Services/InspectorServer/Forward.h new file mode 100644 index 0000000000..97cdfba43c --- /dev/null +++ b/Userland/Services/InspectorServer/Forward.h @@ -0,0 +1,13 @@ +/* + * Copyright (c) 2021, Andreas Kling <kling@serenityos.org> + * + * SPDX-License-Identifier: BSD-2-Clause + */ + +#pragma once + +namespace SymbolServer { + +class ClientConnection; + +} |