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.
19 lines
435 B
C++
19 lines
435 B
C++
// TriggerWithInput.h: interface for the CTriggerWithInput class.
|
|
//
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
#pragma once
|
|
|
|
#include "Utility.h"
|
|
#include "Input.h"
|
|
|
|
#include "DllDefines.h"
|
|
|
|
class MCCTRDLLCLASS CTriggerWithInput : public CTrigger
|
|
{
|
|
public:
|
|
void InsertInput(CInput* pInput, BOOL bState, DWORD dwDebounce, DWORD dwTimeout);
|
|
CTriggerWithInput();
|
|
virtual ~CTriggerWithInput();
|
|
};
|