mirror of
https://github.com/YuhangQ/InvoDB.git
synced 2025-01-30 16:40:56 +00:00
19 lines
227 B
C
19 lines
227 B
C
|
//
|
||
|
// Created by YuhangQ on 2021/10/9.
|
||
|
//
|
||
|
|
||
|
#ifndef INVODB_JSON_H
|
||
|
#define INVODB_JSON_H
|
||
|
|
||
|
#include <string>
|
||
|
#include "rapidjson/document.h"
|
||
|
|
||
|
using namespace rapidjson;
|
||
|
|
||
|
class JSON : public Document {
|
||
|
|
||
|
};
|
||
|
|
||
|
|
||
|
#endif //INVODB_JSON_H
|