ladybird/AK/JsonArray.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
75 B
C++

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