抛弃GdCpp*.dll/pdb历史重新建库。libhv和Sqlite的dll保留

This commit is contained in:
Zhang Jianjun
2026-02-02 16:09:02 +08:00
parent f148ca49e3
commit 4a2a284ac0
292 changed files with 350450 additions and 0 deletions

29
include/json/ksjson.h Normal file
View File

@@ -0,0 +1,29 @@
#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