All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
IKeyboardInputKeyPressedHandler.h
1 // Copyright eeGeo Ltd (2012-2014), All Rights Reserved
2 
3 #pragma once
4 
5 #include "AppInterface.h"
6 
7 namespace Eegeo
8 {
9  namespace UI
10  {
11  namespace NativeInput
12  {
14  {
15  public:
17 
18  virtual bool HandleKeyboardInputKeyPressed(const AppInterface::KeyboardData& data) = 0;
19  };
20  }
21  }
22 }