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.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/core/launcher/irserver.h b/core/launcher/irserver.h
index f9f682f..b3434dd 100644
--- a/core/launcher/irserver.h
+++ b/core/launcher/irserver.h
@@ -2,19 +2,21 @@
2#define IRSERVER_H 2#define IRSERVER_H
3 3
4#include <qobject.h> 4#include <qobject.h>
5 5
6class QCopChannel; 6class QCopChannel;
7class QLibrary; 7class QLibrary;
8struct ObexInterface;
8 9
9class IrServer : public QObject 10class IrServer : public QObject
10{ 11{
11 Q_OBJECT 12 Q_OBJECT
12public: 13public:
13 IrServer( QObject *parent = 0, const char *name = 0 ); 14 IrServer( QObject *parent = 0, const char *name = 0 );
14 ~IrServer(); 15 ~IrServer();
15 16
16private: 17private:
17 QLibrary *lib; 18 QLibrary *lib;
19 ObexInterface *iface;
18}; 20};
19 21
20#endif 22#endif