_tstring.hpp
来自「字符串」· HPP 代码 · 共 24 行
HPP
24 行
#ifndef ZK_STD_UNICODE_STRING_H__
#define ZK_STD_UNICODE_STRING_H__
#include <string>
#include <iostream>
#include <sstream>
#if defined( UNICODE ) || defined( _UNICODE )
typedef std::wstring _string;
typedef const _string c_string;
typedef std::wstringstream _stringstream;
#define _tcout std::wcout
#define _tcin std::wcin
#else
typedef std::string _string;
typedef const _string c_string;
typedef std::stringstream _stringstream;
#define _tcout std::cout
#define _tcin std::cin
#endif
#endif //< STD_UNICODE_STRING_H__ >//
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?