-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjson.h
More file actions
28 lines (22 loc) · 721 Bytes
/
json.h
File metadata and controls
28 lines (22 loc) · 721 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#ifndef JSON_JSON_H_INCLUDED
# define JSON_JSON_H_INCLUDED
# include "autolink.h"
# include "value.h"
# include "reader.h"
# include "writer.h"
# include "features.h"
//////////////////////////////////////////////Add by yjh
typedef Json::Value JsonValue;
typedef Json::FastWriter JsonWriter;
typedef Json::StyledWriter JsonStyleWriter;
typedef Json::Reader JsonReader;
#define JNull Json::nullValue
#define JInt Json::intValue
#define JUint Json::uintValue
#define JDouble Json::realValue
#define JString Json::stringValue
#define JBool Json::booleanValue
#define JArray Json::arrayValue
#define JObject Json::objectValue
///////////////////////////////////////////Add by yjh
#endif // JSON_JSON_H_INCLUDED