📄 _tstring.hpp
字号:
#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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -