diff options
| author | Sebastien Braun | 2010-10-05 15:30:04 +0200 |
|---|---|---|
| committer | Sebastien Braun | 2010-10-05 18:15:51 +0200 |
| commit | ac05f7d367ae9983e7996738871efbdbf3ec66e8 (patch) | |
| tree | cff16aee36f2afcb00df6842cb0e9bab82c86c16 /src/input/privilegedHandlerForwarder.h | |
| parent | Add description to input event handlers so they can (diff) | |
| download | pvs-ac05f7d367ae9983e7996738871efbdbf3ec66e8.tar.gz pvs-ac05f7d367ae9983e7996738871efbdbf3ec66e8.tar.xz pvs-ac05f7d367ae9983e7996738871efbdbf3ec66e8.zip | |
Implement privileged input daemon, first version without handlers.
Diffstat (limited to 'src/input/privilegedHandlerForwarder.h')
| -rw-r--r-- | src/input/privilegedHandlerForwarder.h | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/src/input/privilegedHandlerForwarder.h b/src/input/privilegedHandlerForwarder.h new file mode 100644 index 0000000..37e8f24 --- /dev/null +++ b/src/input/privilegedHandlerForwarder.h @@ -0,0 +1,32 @@ +/* + # Copyright (c) 2009 - OpenSLX Project, Computer Center University of Freiburg + # + # This program is free software distributed under the GPL version 2. + # See http://openslx.org/COPYING + # + # If you have any feedback please consult http://openslx.org/feedback and + # send your suggestions, praise, or complaints to feedback@openslx.org + # + # General information about OpenSLX can be found at http://openslx.org/ + # -------------------------------------------------------------------------- + # inputHandlerChain.h: + # - Forward privileged input events to a special handler process. + # -------------------------------------------------------------------------- + */ + +#ifndef PRIVILEGEDHANDLERFORWARDER_H_ +#define PRIVILEGEDHANDLERFORWARDER_H_ + +#include "inputEventHandler.h" + +class PrivilegedHandlerForwarder : public DefaultInputEventHandler<InputEvent::ET_SPECIAL> +{ +public: + void handle(InputEvent const& evt, InputEventContext const* = 0); + void initialize(); + +private: + int _socket; +}; + +#endif /* PRIVILEGEDHANDLERFORWARDER_H_ */ |
