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

📄 button.h

📁 这个程序是对电梯的模拟
💻 H
字号:
// Button.h: interface for the Button class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_BUTTON_H__2519BC4B_620C_4097_8B01_07CA5A87D8B9__INCLUDED_)
#define AFX_BUTTON_H__2519BC4B_620C_4097_8B01_07CA5A87D8B9__INCLUDED_

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

#include "Light.h"	// Added by ClassView


class Button  
{
public:
	void LightOff();
	void LightOn();
	Light bgLight;
	bool status;

	void SetCaption(int cap);
	Button();
	Button(int cap);
	bool GetButtonStatus();	
	virtual ~Button();

private:
	int caption;
};

#endif // !defined(AFX_BUTTON_H__2519BC4B_620C_4097_8B01_07CA5A87D8B9__INCLUDED_)

⌨️ 快捷键说明

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