commit 2025-09-04 14:38 edit a bit ZCppMainTest/ZtCThreadEx_000.cpp

This commit is contained in:
2025-09-04 14:38:06 +09:00
parent 7dff03d2bc
commit 103ea42de7

View File

@ -30,29 +30,29 @@ namespace ZNsMain
void Init(ZCStringStd& AR_KeyCStr)
{
cout<<"# Init() : "<<AR_KeyCStr<<endl;
cout<<"* Init() : "<<AR_KeyCStr<<endl;
}
void Exec(ZCStringStd& AR_KeyCStr)
{
cout<<"# Exec() : "<<AR_KeyCStr<<endl;
cout<<"* Exec() : "<<AR_KeyCStr<<endl;
}
void Fini(ZCStringStd& AR_KeyCStr)
{
cout<<"# Fini() : "<<AR_KeyCStr<<endl;
cout<<"* Fini() : "<<AR_KeyCStr<<endl;
}
void Init(ZCStringStd& AR_KeyCStr, ZCStringStd& AR_KeyCStr2)
{
cout<<"# Init2() : "<<AR_KeyCStr2<<endl;
cout<<"* Init2() : "<<AR_KeyCStr<<", "<<AR_KeyCStr2<<endl;
}
void Exec(ZCStringStd& AR_KeyCStr, ZCStringStd& AR_KeyCStr2)
{
cout<<"# Init2() : "<<AR_KeyCStr2<<endl;
cout<<"* Init2() : "<<AR_KeyCStr<<", "<<AR_KeyCStr2<<endl;
}
void Fini(ZCStringStd& AR_KeyCStr, ZCStringStd& AR_KeyCStr2)
{
cout<<"# Init2() : "<<AR_KeyCStr2<<endl;
cout<<"* Init2() : "<<AR_KeyCStr<<", "<<AR_KeyCStr2<<endl;
}
};/*