serenity/AK/JsonObject.cpp
Andreas Kling f6998b1817 JSON: Templatize the JSON serialization code
This makes it possible to use something other than a StringBuilder for
serialization (and to produce something other than a String.) :^)
2019-08-07 21:29:32 +02:00

7 lines
76 B
C++

#include <AK/JsonObject.h>
#include <AK/StringBuilder.h>
namespace AK {
}