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:
parent
dce3faff08
commit
78943f031e
9 changed files with 101 additions and 0 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue