summaryrefslogtreecommitdiff
path: root/core/launcher/irserver.h
Side-by-side diff
Diffstat (limited to 'core/launcher/irserver.h') (more/less context) (ignore whitespace changes)
-rw-r--r--core/launcher/irserver.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/core/launcher/irserver.h b/core/launcher/irserver.h
new file mode 100644
index 0000000..f9f682f
--- a/dev/null
+++ b/core/launcher/irserver.h
@@ -0,0 +1,20 @@
+#ifndef IRSERVER_H
+#define IRSERVER_H
+
+#include <qobject.h>
+
+class QCopChannel;
+class QLibrary;
+
+class IrServer : public QObject
+{
+ Q_OBJECT
+public:
+ IrServer( QObject *parent = 0, const char *name = 0 );
+ ~IrServer();
+
+private:
+ QLibrary *lib;
+};
+
+#endif