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.
28 lines
706 B
C++
28 lines
706 B
C++
// Input_7433.h: interface for the CInput_7433 class.
|
|
//
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
#if !defined(AFX_INPUT_7433_H__3FC97F80_8C46_408E_A8DB_6CC6FF5B7878__INCLUDED_)
|
|
#define AFX_INPUT_7433_H__3FC97F80_8C46_408E_A8DB_6CC6FF5B7878__INCLUDED_
|
|
|
|
#if _MSC_VER > 1000
|
|
#pragma once
|
|
#endif // _MSC_VER > 1000
|
|
|
|
#include "InputBase.h"
|
|
|
|
class CInput_7433 : public CInputBase
|
|
{
|
|
public:
|
|
CInput_7433(const CInputSetting &Setting);
|
|
virtual ~CInput_7433();
|
|
|
|
// method to query if input is OFF
|
|
BOOL IsOff();
|
|
|
|
// method to query if input is ON
|
|
BOOL IsOn();
|
|
};
|
|
|
|
#endif // !defined(AFX_INPUT_7433_H__3FC97F80_8C46_408E_A8DB_6CC6FF5B7878__INCLUDED_)
|