commit 2025-10-10 06:18 add ZftMakeStr(ARR_SaveCStr, ZTypIntUL AUL_Int) etc : ZCppMain/ZMainHead.H etc
This commit is contained in:
@ -7534,28 +7534,40 @@ namespace ZNsMain
|
||||
|
||||
_ZCSTRINGBASE_ARG_ _ZCSTRINGBASE_& ZftMakeStr
|
||||
( _ZCSTRINGBASE_& ARR_SaveCStr, const typename
|
||||
_ZCSTRINGBASE_::ZCChars& AR_DataCStr )
|
||||
_ZCSTRINGBASE_::ZCChars& AR_DataCStr )
|
||||
{ return ARR_SaveCStr(AR_DataCStr); }
|
||||
|
||||
_ZCSTRINGBASE_ARG_ _ZCSTRINGBASE_& ZftMakeStr
|
||||
( _ZCSTRINGBASE_& ARR_SaveCStr, typename
|
||||
_ZCSTRINGBASE_::TypeChar AC_Char )
|
||||
{ return ARR_SaveCStr(AC_Char ); }
|
||||
_ZCSTRINGBASE_::TypeChar AC_Char )
|
||||
{ return ARR_SaveCStr(AC_Char ); }
|
||||
|
||||
_ZCSTRINGBASE_ARG_ _ZCSTRINGBASE_& ZftMakeStr
|
||||
( _ZCSTRINGBASE_& ARR_SaveCStr, int AI_IntI )
|
||||
{ return ARR_SaveCStr(AI_IntI ); }
|
||||
( _ZCSTRINGBASE_& ARR_SaveCStr, ZTypIntI AI_IntI )
|
||||
{ return ARR_SaveCStr(AI_IntI ); }
|
||||
|
||||
_ZCSTRINGBASE_ARG_ _ZCSTRINGBASE_& ZftMakeStr
|
||||
( _ZCSTRINGBASE_& ARR_SaveCStr, long AL_Long )
|
||||
{ return ARR_SaveCStr(AL_Long ); }
|
||||
( _ZCSTRINGBASE_& ARR_SaveCStr, ZTypIntL AL_Long )
|
||||
{ return ARR_SaveCStr(AL_Long ); }
|
||||
|
||||
_ZCSTRINGBASE_ARG_ _ZCSTRINGBASE_& ZftMakeStr
|
||||
( _ZCSTRINGBASE_& ARR_SaveCStr, double AD_Double )
|
||||
{ return ARR_SaveCStr(AD_Double ); }
|
||||
( _ZCSTRINGBASE_& ARR_SaveCStr, ZTypIntUI AUI_Int )
|
||||
{ return ARR_SaveCStr(AUI_Int ); }
|
||||
|
||||
_ZCSTRINGBASE_ARG_ _ZCSTRINGBASE_& ZftMakeStr
|
||||
( _ZCSTRINGBASE_& ARR_SaveCStr, bool AB_Bool )
|
||||
( _ZCSTRINGBASE_& ARR_SaveCStr, ZTypIntUL AUL_Int )
|
||||
{ return ARR_SaveCStr(AUL_Int ); }
|
||||
|
||||
_ZCSTRINGBASE_ARG_ _ZCSTRINGBASE_& ZftMakeStr
|
||||
( _ZCSTRINGBASE_& ARR_SaveCStr, ZTypIntULL AULL_Int )
|
||||
{ return ARR_SaveCStr(AULL_Int ); }
|
||||
|
||||
_ZCSTRINGBASE_ARG_ _ZCSTRINGBASE_& ZftMakeStr
|
||||
( _ZCSTRINGBASE_& ARR_SaveCStr, double AD_Double )
|
||||
{ return ARR_SaveCStr(AD_Double ); }
|
||||
|
||||
_ZCSTRINGBASE_ARG_ _ZCSTRINGBASE_& ZftMakeStr
|
||||
( _ZCSTRINGBASE_& ARR_SaveCStr, bool AB_Bool )
|
||||
{
|
||||
typedef typename _ZCSTRINGBASE_::TypeChar TypeChar;
|
||||
typedef typename _ZCSTRINGBASE_::TypeSize TypeSize;
|
||||
|
Reference in New Issue
Block a user