📄 utility.h
字号:
// Utility.h: interface for the CUtility class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_UTILITY_H__1B08B109_3048_4A89_B3B7_C3B0458BB46C__INCLUDED_)
#define AFX_UTILITY_H__1B08B109_3048_4A89_B3B7_C3B0458BB46C__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
class CUtility
{
public:
CUtility();
virtual ~CUtility();
// 数据转化
static void UnsignedShortToCharp(unsigned short *srcstr,char *deststr);
static void CharpToUnsignedShort(const char *srcstr,unsigned short *deststr);
};
#endif // !defined(AFX_UTILITY_H__1B08B109_3048_4A89_B3B7_C3B0458BB46C__INCLUDED_)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -