tagging release
[dasher.git] / trunk / Src / DasherCore / StylusFilter.h
blob6bdeffd544310fe3abc4b9d68b90fabdd33d2519
1 #ifndef __STYLUS_FILTER_H__
2 #define __STYLUS_FILTER_H__
4 #include "DefaultFilter.h"
6 /// \ingroup InputFilter
7 /// @{
8 class CStylusFilter : public CDefaultFilter {
9 public:
10 CStylusFilter(Dasher::CEventHandler * pEventHandler, CSettingsStore *pSettingsStore, CDasherInterfaceBase *pInterface, CDasherModel *pDasherModel, ModuleID_t iID, const char *szName);
12 virtual void KeyDown(int iTime, int iId, CDasherModel *pModel);
13 virtual void KeyUp(int iTime, int iId, CDasherModel *pModel);
15 /// @}
17 #endif