2 Star 0 Fork 0

qdu-soft/teacherManger

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
initconfig.hpp 542 Bytes
一键复制 编辑 原始数据 按行查看 历史
define9 提交于 2022-02-02 22:11 . 分数等数据的保存
#ifndef INITCONFIG_HPP
#define INITCONFIG_HPP
#include "spdlog/fmt/fmt.h"
#include <QString>
/**
* 配置 QString 的 SPDLOG 输出
* https://fmt.dev/latest/api.html#udt
*/
template <>
struct fmt::formatter<QString> {
constexpr auto parse(format_parse_context& ctx) -> decltype(ctx.begin()) {
return nullptr;
}
template <typename FormatContext>
auto format(const QString& qString, FormatContext& ctx) -> decltype(ctx.out()) {
return format_to(ctx.out(), "{}", qString.toStdString());
}
};
#endif // INITCONFIG_HPP
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/qdu-soft/teacher-manger.git
git@gitee.com:qdu-soft/teacher-manger.git
qdu-soft
teacher-manger
teacherManger
master

搜索帮助