home *** CD-ROM | disk | FTP | other *** search
- #ifndef INPUTDEVICEWINDOWSMOUSE_H
- #define INPUTDEVICEWINDOWSMOUSE_H
-
- #include "InputDevice.h"
- #include "InputManager.h"
- #include <Nocopy.h>
-
- class InputDeviceWindowsMouse : public InputDevice, private Nocopy
- {
- public:
- virtual String get_name()const;
- virtual String get_type()const;
- void mouse_move(int x, int y);
- void mouse_up(int key);
- void mouse_down(int key);
- private:
- int mouse_x, mouse_y;
- };
- #endif //INPUTDEVICEWINDOWSMOUSE_H