Sleeping Wombat GUI  0.100
swGUI
InputEventArgs.h
Go to the documentation of this file.
1 #pragma once
2 
4 
6 
7 
15 namespace sw {
16 namespace gui
17 {
18 
19 
22 struct InputEventArgs : public IEventArgs
23 {
24  RTTR_ENABLE( IEventArgs )
25 public:
26 
28 
29 public:
30 
32  : Device( device )
33  {}
34 };
35 
36 } // gui
37 } // sw
Base class for events.
Definition: IEventArgs.h:27
input::Device * Device
Device which produced this event.
Definition: InputEventArgs.h:27
InputEventArgs(input::Device *device)
Definition: InputEventArgs.h:31
Definition: DirectInputModule.cpp:11
Interface class for input devices.
Definition: Device.h:21
Base class for input events.
Definition: InputEventArgs.h:22