LibIPC+Services: Support URL as a native IPC type

This commit is contained in:
Andreas Kling 2020-06-07 22:54:27 +02:00
commit 3654710c41
Notes: sideshowbarker 2024-07-19 05:46:08 +09:00
10 changed files with 26 additions and 16 deletions

View file

@ -58,6 +58,7 @@ public:
Encoder& operator<<(const char*);
Encoder& operator<<(const StringView&);
Encoder& operator<<(const String&);
Encoder& operator<<(const URL&);
Encoder& operator<<(const Dictionary&);
template<typename T>