mirror of
https://github.com/YuhangQ/InvoDB.git
synced 2025-01-28 23:50:59 +00:00
13 lines
218 B
C++
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();
|
|
}
|