From f85f685cdfa16d5cee378f93e0dcefc4a7658636 Mon Sep 17 00:00:00 2001 From: sauron Date: Wed, 8 Oct 2025 23:03:16 +0900 Subject: [PATCH] commit 2025-10-08 23:03 add ZCSngtLogData& operator()(const ZCCharView& AR_View) : ZCppMain/ZMainHead.H --- ZCppMain/ZMainHead.H | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/ZCppMain/ZMainHead.H b/ZCppMain/ZMainHead.H index a7f3037..a3fe0be 100644 --- a/ZCppMain/ZMainHead.H +++ b/ZCppMain/ZMainHead.H @@ -7556,6 +7556,12 @@ namespace ZNsMain }/* ZCSngtLogData& operator()(const char* APC_LogData)*/ + ZCSngtLogData& operator()(const ZCCharView& AR_View) + { + ZCSngtLogData::Log(AR_View.data(), AR_View.size()); return *this; + }/* + ZCSngtLogData& operator()(const ZCCharView& AR_View)*/ + ZCSngtLogData& operator()(int AI_LogData){ GetSngtView().Log(AI_LogData); return *this; } ZCSngtLogData& operator()(long AL_LogData){ GetSngtView().Log(AL_LogData); return *this; } ZCSngtLogData& operator()(double AD_LogData){ GetSngtView().Log(AD_LogData); return *this; }