📄 doctorstudent.h
字号:
// DoctorStudent.h: interface for the CDoctorStudent class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_DOCTORSTUDENT_H__72221AFD_F39F_4AF6_B101_0D96A3A835EF__INCLUDED_)
#define AFX_DOCTORSTUDENT_H__72221AFD_F39F_4AF6_B101_0D96A3A835EF__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#include "MasterStudent.h"
class CDoctorStudent : public CMasterStudent
{
public:
int m_nPaper;
void Display(CListCtrl* pListCtrl,int nImage);
CDoctorStudent(CString strName,CString strID,int nAge,CString strDepartment,CString strLab,int nPaper);
CDoctorStudent();
virtual ~CDoctorStudent();
};
#endif // !defined(AFX_DOCTORSTUDENT_H__72221AFD_F39F_4AF6_B101_0D96A3A835EF__INCLUDED_)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -