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

📄 building.h

📁 某国际贸易中心共有40层
💻 H
字号:
# ifndef _BUILDING_H
# define _BUILDING_H

# include "simulation.h"
# include "elevsim.h"
# include "person.h"
# include "floor.h"
# include "elevator.h"

class building:public simulation
{
  perSet Persons;
  floorSet Floors;
  elevSet Elevators;
  int hours;
  int minutes;
  int seconds;
  public:
    building()
    {
      minutes=0;
      hours=0;
      seconds=0;
    }
    bool continues(void);
    void perform(void);
    void display(void);
};

# endif

⌨️ 快捷键说明

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