util.h

来自「LINUX 设计一个简单的二级文件系统」· C头文件 代码 · 共 20 行

H
20
字号
// Util.h: interface for the Util class.
//
//////////////////////////////////////////////////////////////////////
#ifndef ALVIN_UTIL
#define ALVIN_UTIL
#include "string"

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 + =
减小字号Ctrl + -
显示快捷键?