1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 06:17:34 +00:00

LibIPC: Add a built-in encoder/decoder for AK::Time

This commit is contained in:
Timothy Flynn 2023-02-24 13:51:37 -05:00 committed by Tim Flynn
parent 8eeedce805
commit 1858163d3c
4 changed files with 20 additions and 0 deletions

View file

@ -118,6 +118,9 @@ ErrorOr<void> encode(Encoder&, ByteBuffer const&);
template<>
ErrorOr<void> encode(Encoder&, JsonValue const&);
template<>
ErrorOr<void> encode(Encoder&, Time const&);
template<>
ErrorOr<void> encode(Encoder&, URL const&);