/* # 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: # - Definition of the input handler chain # -------------------------------------------------------------------------- */ #ifndef INPUTHANDLERCHAIN_H_ #define INPUTHANDLERCHAIN_H_ #include #include "inputEventHandler.h" #include "x11FakeKeyboardHandler.h" #include "x11FakeMouseHandler.h" #include "privilegedHandlerForwarder.h" typedef boost::mpl::list< Handler >, Handler >, Handler >, Handler >::type unprivileged_handler_list; typedef InputEventHandlerChain unprivileged_handler_chain; typedef boost::mpl::list< >::type privileged_handler_list; typedef InputEventHandlerChain privileged_handler_chain; #endif /* INPUTHANDLERCHAIN_H_ */