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

📄 global.h

📁 医院管理系统在CV++条件下的完整性开发>>>
💻 H
字号:
// Global.h: interface for the CGlobal class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_GLOBAL_H__C3828743_008C_410A_841F_893671E5A2B5__INCLUDED_)
#define AFX_GLOBAL_H__C3828743_008C_410A_841F_893671E5A2B5__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

#include "Users.h"

// 门诊收费中使用的公共变量'
extern CString RegistrationID;
// 公共变量用在选择患者信息
extern CString PatientId;
extern CString PatientName;
extern CString PatientAge;
extern CString PatientIDNum;
extern CString PatientSex;
extern CString PatientMarry;

// 选择收费药品信息,收费项目信息
extern CString Reg_ItemId;
extern CString Reg_ItemName;
extern CString Reg_ItemSalePrice;
extern CString Reg_ItemUnit;
extern CString Reg_ItemTotal;


class CGlobal  
{
public:
	CUsers curUser;
	CGlobal();
	virtual ~CGlobal();

};

#endif // !defined(AFX_GLOBAL_H__C3828743_008C_410A_841F_893671E5A2B5__INCLUDED_)

⌨️ 快捷键说明

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