InvoDB/invodb/models/json.cpp
2021-10-23 16:28:57 +08:00

13 lines
218 B
C++

//
// Created by YuhangQ on 2021/10/9.
//
#include "json.h"
std::string JSON::ToString() {
StringBuffer buffer;
Writer<StringBuffer> writer(buffer);
this->Accept(writer);
return buffer.GetString();
}