30 lines
670 B
C
30 lines
670 B
C
#ifndef LIB_KS_JSON_H
|
||
#define LIB_KS_JSON_H
|
||
|
||
#include "ParaHelper.h"
|
||
|
||
/**
|
||
* @group ksjson
|
||
* @brief 在nlohmann::json C++类库的基础上扩展的类库。
|
||
* @details
|
||
*
|
||
* nlohmann::json来自:https://github.com/nlohmann/json
|
||
* 简介: 目录nlohmann下README.md、nlohmann json.pdf
|
||
* 文档: https://nlohmann.github.io/json/
|
||
*
|
||
* 本模块主要实现以下功能:
|
||
* 1. 支持VC的数据类型,如CString等
|
||
* 2. 支持从Qt资源文件加载json
|
||
* 3. json、bson文件接口
|
||
* 4. 读入参数是支持校验
|
||
*
|
||
*/
|
||
|
||
#include "jsonReadWithVerify.h"
|
||
#include "CJsonFile.h"
|
||
|
||
#include "jsonVCWrapper.h"
|
||
|
||
|
||
#endif // LIB_KS_JSON_H
|