mirror of
https://github.com/JorjBauer/aiie.git
synced 2024-12-21 08:29:25 +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
|