📄 util.h
字号:
// Util.h: interface for the Util class.
//
//////////////////////////////////////////////////////////////////////
#ifndef ALVIN_UTIL
#define ALVIN_UTIL
#include "string2"
class Util
{
public:
void ReadLine(std::string &str);
void Find(const char* reg, std::string &cmd, std::string *$);
Util();
virtual ~Util();
int regTest(const char* reg, const char* str);
};
extern Util u;
#endif // !defined(AFX_UTIL_H__B1ACA760_5243_4C82_8107_7C371661C9BB__INCLUDED_)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -