⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ld_operate.h

📁 设计模式:工厂模式、单例模式的基本实现
💻 H
字号:
#ifndef LD_OPERATE_H
#define LD_OPERATE_H
#include <string>
using namespace std;
class LD_Operate
{
private:
	string classType;
public:
	void LD_OP_Up(LD_File *&_nowPosition);
	void LD_OP_Down(LD_File *&_nowPosition);
	void LD_OP_Home(LD_File *&_nowPosition);
	void LD_OP_End(LD_File *&_nowPosition);
	void LD_OP_Esc(int nType);

	LD_Operate();
	void setClassType(string _classType);
	string getClassType();
#define RET return
#define EXT exit(0)
};
#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -