📄 tstring.h
字号:
#ifndef __TSTRING_H__
#define __TSTRING_H__
#if defined(_MSC_VER) && (_MSC_VER >= 1020)
#pragma once
#endif
#include <string>
#include <tchar.h>
namespace util
{
#ifdef _UNICODE
typedef std::wstring _tstring;
#else
typedef std::string _tstring;
#endif
}
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -