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

📄 manage.h

📁 通讯录系统
💻 H
字号:
#ifndef MANAGE_H
#define MANAGE_H
#include "Catalog.h"
//界面类
class Manage {
	std::vector<Catalog> catalogs;
	static int catalogNum;
public:
	void save(std::string name);	//保存
	void read(std::string name);	//读取
	void newCatalog();				//新建
	void exitProgram();				//退出
	void Find();					//查找
	Catalog& current();				//当前的Catalog
	Catalog& old();					//上一个Catalog
	void start();					//开始
	void Interface();				//界面
	void addRecord();				//添加
	void deleteRecord();			//删除
};
#endif

⌨️ 快捷键说明

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