This website requires JavaScript.
Explore
Help
Sign in
mirrors
/
serenity
Watch
1
Star
0
Fork
You've already forked serenity
0
mirror of
https://github.com/SerenityOS/serenity.git
synced
2025-01-23 18:02:05 -05:00
Code
Issues
Projects
Releases
Packages
Wiki
Activity
bb9909548b
serenity
/
AK
/
JsonArray.cpp
7 lines
75 B
C++
Raw
Normal View
History
Unescape
Escape
AK: Add some classes for JSON encoding. This patch adds JsonValue, JsonObject and JsonArray. You can use them to build up a JsonObject and then serialize it to a string via to_string(). This patch only implements encoding, no decoding yet.
2019-06-17 19:47:35 +02:00
#
include
<AK/JsonArray.h>
#
include
<AK/StringBuilder.h>
AK: Use a single StringBuilder throughout JSON serialization.
2019-06-17 21:34:12 +02:00
namespace
AK
{
}
Reference in a new issue
Copy permalink