summaryrefslogtreecommitdiff
path: root/core/applets/obex/obeximpl.h
Unidiff
Diffstat (limited to 'core/applets/obex/obeximpl.h') (more/less context) (ignore whitespace changes)
-rw-r--r--core/applets/obex/obeximpl.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/core/applets/obex/obeximpl.h b/core/applets/obex/obeximpl.h
new file mode 100644
index 0000000..996627b
--- a/dev/null
+++ b/core/applets/obex/obeximpl.h
@@ -0,0 +1,25 @@
1
2#ifndef OpieObexImpl_H
3#define OpieObexImpl_H
4
5#include "../obexinterface.h"
6#include <qpe/qcopenvelope_qws.h>
7
8namespace OpieObex {
9 class Obex;
10 class ObexImpl : public ObexInterface, public QObject {
11 Q_OBJECT
12 public:
13 ObexImpl();
14 virtual ObexImpl();
15 QRESULT queryInterface( const QUuid&, QUnknownInterface** );
16 Q_REFCOUNT // for reference counting (macro )
17 private:
18 ulong ref;
19 Obex* m_obex; // obex lib
20 QCopChannel *m_chan;
21 private slots:
22 void slotMessage( const QCString&, const QByteArray& );
23 };
24};
25#endif