1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 21:27:35 +00:00

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
parent dce3faff08
commit 78943f031e
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)