~ppsspp/ppsspp/ppsspp_1.3.0

« back to all changes in this revision

Viewing changes to Windows/KeyboardDevice.h

  • Committer: Sérgio Benjamim
  • Date: 2017-01-02 00:12:05 UTC
  • Revision ID: sergio_br2@yahoo.com.br-20170102001205-cxbta9za203nmjwm
1.3.0 source (from ppsspp_1.3.0-r160.p5.l1762.a165.t83~56~ubuntu16.04.1.tar.xz).

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#pragma once
 
2
 
 
3
#include <vector>
 
4
#include "base/mutex.h"
 
5
#include "InputDevice.h"
 
6
 
 
7
extern std::map<int, int> windowsTransTable;
 
8
 
 
9
class KeyboardDevice : public InputDevice {
 
10
public:
 
11
        virtual int UpdateState(InputState &input_state);
 
12
        virtual bool IsPad() { return false; }
 
13
        
 
14
private:
 
15
};