Files
mir_server/sdk/srvlib/include/wyString.h
aixianling 5c9f1dae4a init
2025-01-09 17:45:40 +08:00

26 lines
498 B
C

#ifndef _WYLIB_STRING_H_
#define _WYLIB_STRING_H_
/******************************************************************
*
* wyLib库 2008 - 2010
*
* $ 字符串类 $
*
* - 主要功能 -
*
* 包含UCS-2和ASCII字符串处理类
*
*****************************************************************/
#include "WideString.hpp"
#include "AnsiString.hpp"
#ifdef UNICODE
typedef wylib::string::CWideString String;
#else
typedef wylib::string::CAnsiString String;
#endif
#endif