Files
GdCpp12/include/json/ksjson.h

30 lines
670 B
C
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
#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