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

📄 admin.h

📁 很好的学习C++源码,基于C++版学生管理系统
💻 H
字号:
#ifndef ADMIN_H
#define ADMIN_H

#include "logoninformation.h"  //登陆信息类文件
#include "Menu.h"		       //菜单类头文件
#include "StudentList.h"       //学生链表类头文件
#include <iostream>
#include <string>
#include <conio.h>
#include <stdio.h>
using namespace std;

class CAdmin     //管理类(管理菜单类,学生链表类,文件输入输出类,登陆信息类)
{
private:
	char m_cExit;      //该变量用于判断是否要退出管理系统登陆菜单
	char m_sTemp[30];  //临时存放菜单显示函数返回的字符串
public:
	void ClassAdmin();
	CAdmin();
	virtual ~CAdmin();

};

#endif

⌨️ 快捷键说明

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