global.h

来自「本网站是一个库存管理系统」· C头文件 代码 · 共 23 行

H
23
字号
// Global.h: interface for the CGlobal class.

#ifndef CLASS_GLOBAL
#define CLASS_GLOBAL

#include "Users.h"

#ifdef CLASS_GLOBAL
class __declspec(dllexport) CGlobal
#else
class __declspec(dllimport) CGlobal
#endif
{
public:
	CUsers curUser;
public:
	CGlobal();
	virtual ~CGlobal();

};

#endif 

⌨️ 快捷键说明

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