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; }