summaryrefslogtreecommitdiff
path: root/core/launcher/irserver.h
Unidiff
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 @@
1#ifndef IRSERVER_H
2#define IRSERVER_H
3
4#include <qobject.h>
5
6class QCopChannel;
7class QLibrary;
8
9class IrServer : public QObject
10{
11 Q_OBJECT
12public:
13 IrServer( QObject *parent = 0, const char *name = 0 );
14 ~IrServer();
15
16private:
17 QLibrary *lib;
18};
19
20#endif