📄 ld_ctr_register.h
字号:
#ifndef _LD_CTR
#define _LD_CTR
#include <iostream>
#include <string>
#include <windows.h>
#include <conio.h>
using namespace std;
#include "LD_Face.h"
#include "LD_FileR.h"
extern int nTotalStu;
class CLD_CTR_Register //管理类
{
int m_nManageSel;
public:
void m_gotoxy(int _x, int _y)
{
COORD co;
co.X = _x;
co.Y = _y;
SetConsoleCursorPosition(GetStdHandle(STD_OUTPUT_HANDLE), co);
}
CLD_CTR_Register():m_nManageSel(0)
{}
void m_LD_GetSel()
{
int _nManageSel;
cin>>_nManageSel;
m_nManageSel=_nManageSel;
}
void m_LD_Select(LD_FileR* &_nowSpace,int &nNumCon);
void m_LD_REG_Add(LD_FileR* &_nowSpace,int &nNumcont);
void m_LD_REG_Delete(int &nNumcont);
void m_LD_REG_Look(int &nNumcont);
void m_LD_REG_Change(int &nNumcont);
};
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -