LibIPC: Add a simple IPC::Dictionary type (String key -> String value)

This commit is contained in:
Andreas Kling 2020-05-03 22:15:27 +02:00
commit 78943f031e
Notes: sideshowbarker 2024-07-19 07:00:34 +09:00
9 changed files with 101 additions and 0 deletions

View file

@ -27,6 +27,7 @@
#pragma once
#include <AK/Forward.h>
#include <LibIPC/Forward.h>
#include <LibIPC/Message.h>
namespace IPC {
@ -55,6 +56,7 @@ public:
bool decode(i64&);
bool decode(float&);
bool decode(String&);
bool decode(Dictionary&);
template<typename T>
bool decode(T& value)