button.h

来自「这个程序是对电梯的模拟」· C头文件 代码 · 共 34 行

H
34
字号
// 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 + =
减小字号Ctrl + -
显示快捷键?