From 78943f031eabf208954358aef76615dbe17c41d4 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Sun, 3 May 2020 22:15:27 +0200 Subject: LibIPC: Add a simple IPC::Dictionary type (String key -> String value) --- Libraries/LibIPC/Decoder.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'Libraries/LibIPC/Decoder.h') diff --git a/Libraries/LibIPC/Decoder.h b/Libraries/LibIPC/Decoder.h index 4cba8ebb5a..dfc68f6f56 100644 --- a/Libraries/LibIPC/Decoder.h +++ b/Libraries/LibIPC/Decoder.h @@ -27,6 +27,7 @@ #pragma once #include +#include #include namespace IPC { @@ -55,6 +56,7 @@ public: bool decode(i64&); bool decode(float&); bool decode(String&); + bool decode(Dictionary&); template bool decode(T& value) -- cgit v1.2.3