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

📄 lift.h

📁 电梯仿真
💻 H
字号:
#pragma once
#include "afxwin.h"
#include "afxcoll.h"
#include "CommonInc.h"

class CLiftApp :
	public CWinApp
{
public:
	CLiftApp(void);
	~CLiftApp(void);

	int Get_Lift_State(){return this->Lift_State;}
	int Get_Lift_ID(){return this->Lift_ID;}
	int Get_Current_Floor(){return this->Current_Floor;}
	///void Get_WaitQueue();///////运行队列

	DECLARE_MESSAGE_MAP();
public:
	int  Lift_State;
	int  Lift_ID;
	int  Current_Floor;
	CUIntArray WaitQueue;
};

⌨️ 快捷键说明

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