mirror of
https://github.com/JorjBauer/aiie.git
synced 2025-02-21 17:28:58 +00:00
18 lines
306 B
C
18 lines
306 B
C
|
#ifndef __OPENCV_KEYBOARD_H
|
||
|
#define __OPENCV_KEYBOARD_H
|
||
|
|
||
|
#include "physicalkeyboard.h"
|
||
|
#include "vmkeyboard.h"
|
||
|
|
||
|
class OpenCVKeyboard : public PhysicalKeyboard {
|
||
|
public:
|
||
|
OpenCVKeyboard(VMKeyboard *k);
|
||
|
virtual ~OpenCVKeyboard();
|
||
|
|
||
|
virtual void maintainKeyboard();
|
||
|
private:
|
||
|
int lastKey;
|
||
|
};
|
||
|
|
||
|
#endif
|