📄 people.h
字号:
// People.h: interface for the People class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_PEOPLE_H__D8E783EF_DBDE_40CE_A245_560605955221__INCLUDED_)
#define AFX_PEOPLE_H__D8E783EF_DBDE_40CE_A245_560605955221__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#include "DataInfo.h"
#include "Time.h"
using namespace std;
class People
{
public:
int PressButton();
void OutElevator();
void IntoElevator();
People();
virtual ~People();
public:
Time tm;
int PressButton(int f1,int f2,int b);
bool up;
int to;//the people will go to the floor.
};
#endif // !defined(AFX_PEOPLE_H__D8E783EF_DBDE_40CE_A245_560605955221__INCLUDED_)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -