home *** CD-ROM | disk | FTP | other *** search
- #ifndef __INPUTCREATORWINDOWS_H__
- #define __INPUTCREATORWINDOWS_H__
-
- #include "InputDeviceWindowsKeyboard.h"
- #include "InputDeviceWindowsMouse.h"
- #include <Nocopy.h>
-
- class InputCreatorWindows : private Nocopy
- {
- public:
- void key_down(int scan_code);
- void key_up(int scan_code);
- void key_char(int scan_code);
- void mouse_up(int key );
- void mouse_down(int key );
- void mouse_move(int x, int y);
- private:
- InputDeviceWindowsKeyboard keyboard;
- InputDeviceWindowsMouse mouse;
- };
-
- #endif //__INPUTCREATORWINDOWS_H__