diff options
author | Andreas Kling <kling@serenityos.org> | 2020-06-07 22:54:27 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-06-07 22:55:33 +0200 |
commit | 3654710c418a8972555a5d079bfebca0b1fdb8e5 (patch) | |
tree | e23a0926a53e667cb8d46e3a7a5a7317204060e8 /Libraries/LibIPC/Decoder.h | |
parent | b81b2a85c4b84b456630cf95fc37a0c429334164 (diff) | |
download | serenity-3654710c418a8972555a5d079bfebca0b1fdb8e5.zip |
LibIPC+Services: Support URL as a native IPC type
Diffstat (limited to 'Libraries/LibIPC/Decoder.h')
-rw-r--r-- | Libraries/LibIPC/Decoder.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Libraries/LibIPC/Decoder.h b/Libraries/LibIPC/Decoder.h index 340a86701f..5720d7eafa 100644 --- a/Libraries/LibIPC/Decoder.h +++ b/Libraries/LibIPC/Decoder.h @@ -60,6 +60,7 @@ public: bool decode(i64&); bool decode(float&); bool decode(String&); + bool decode(URL&); bool decode(Dictionary&); template<typename T> |