summaryrefslogtreecommitdiffstats
path: root/src/input/pvsPrivInputHandler.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/input/pvsPrivInputHandler.h')
-rw-r--r--src/input/pvsPrivInputHandler.h45
1 files changed, 45 insertions, 0 deletions
diff --git a/src/input/pvsPrivInputHandler.h b/src/input/pvsPrivInputHandler.h
new file mode 100644
index 0000000..9980cdf
--- /dev/null
+++ b/src/input/pvsPrivInputHandler.h
@@ -0,0 +1,45 @@
+/*
+ # 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/
+ # --------------------------------------------------------------------------
+ # pvsPrivInputHandler.h
+ # - Handle privileged input connection requests - interface
+ # --------------------------------------------------------------------------
+ */
+
+#ifndef PVSPRIVINPUTHANDLER_H_
+#define PVSPRIVINPUTHANDLER_H_
+
+#include <QObject>
+#include <QHash>
+#include <QPointer>
+#include "inputHandlerChain.h"
+
+class QSocketNotifier;
+
+class PVSPrivInputHandler : public QObject
+{
+ Q_OBJECT
+public:
+ PVSPrivInputHandler(int fd, QObject* parent = 0);
+ virtual ~PVSPrivInputHandler();
+
+private slots:
+ void canRead();
+
+private:
+ QSocketNotifier* _notifier;
+ QByteArray _messageAssembly;
+ int _bytes;
+ int _fd;
+ privileged_handler_chain _handlerChain;
+};
+
+#endif /* PVSPRIVINPUTHANDLER_H_ */