BALL 1.5.0
Loading...
Searching...
No Matches
deviceEvent.h
Go to the documentation of this file.
1#ifndef DEVICEEVENT_H
2#define DEVICEEVENT_H
3
5
6#include <QtCore/QEvent>
7
8namespace BALL
9{
10 namespace VIEW
11 {
12 class InputDeviceDriver;
13
14 class DeviceEvent : public QEvent
15 {
16 public:
18
19 InputDeviceDriver* getDevice() { return device_;}
20 private:
21 InputDeviceDriver* device_;
22 };
23 }
24}
25
26#endif //DEVICEEVENT_H
27
InputDeviceDriver * getDevice()
Definition deviceEvent.h:19
DeviceEvent(EventsIDs type, InputDeviceDriver *device)