mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-22 02:09:24 +00:00
LibIPC: Add a simple IPC::Dictionary type (String key -> String value)
This commit is contained in:
parent
dce3faff08
commit
78943f031e
Notes:
sideshowbarker
2024-07-19 07:00:34 +09:00
Author: https://github.com/awesomekling
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