You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
709 B
C
29 lines
709 B
C
|
12 years ago
|
// Input_7432.h: interface for the CInput_7432 class.
|
||
|
|
//
|
||
|
|
//////////////////////////////////////////////////////////////////////
|
||
|
|
|
||
|
|
#if !defined(AFX_INPUT_7432_H__0AAEE3C4_2D3D_42F6_8247_918A984DC07E__INCLUDED_)
|
||
|
|
#define AFX_INPUT_7432_H__0AAEE3C4_2D3D_42F6_8247_918A984DC07E__INCLUDED_
|
||
|
|
|
||
|
|
#if _MSC_VER > 1000
|
||
|
|
#pragma once
|
||
|
|
#endif // _MSC_VER > 1000
|
||
|
|
|
||
|
|
#include "InputBase.h"
|
||
|
|
|
||
|
|
class CInput_7432 : public CInputBase
|
||
|
|
{
|
||
|
|
public:
|
||
|
|
CInput_7432(const CInputSetting &Setting);
|
||
|
|
virtual ~CInput_7432();
|
||
|
|
|
||
|
|
|
||
|
|
// method to query if input is OFF
|
||
|
|
BOOL IsOff();
|
||
|
|
|
||
|
|
// method to query if input is ON
|
||
|
|
BOOL IsOn();
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif // !defined(AFX_INPUT_7432_H__0AAEE3C4_2D3D_42F6_8247_918A984DC07E__INCLUDED_)
|