InvoDB/invodb/models/json.cpp

13 lines
218 B
C++
Raw Normal View History

2021-10-11 22:05:45 +08:00
//
// Created by YuhangQ on 2021/10/9.
//
2021-10-23 16:28:57 +08:00
#include "json.h"
std::string JSON::ToString() {
StringBuffer buffer;
Writer<StringBuffer> writer(buffer);
this->Accept(writer);
return buffer.GetString();
}