summaryrefslogtreecommitdiff
path: root/core/applets/obex/obeximpl.h
Side-by-side diff
Diffstat (limited to 'core/applets/obex/obeximpl.h') (more/less context) (show 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 @@
+
+#ifndef OpieObexImpl_H
+#define OpieObexImpl_H
+
+#include "../obexinterface.h"
+#include <qpe/qcopenvelope_qws.h>
+
+namespace OpieObex {
+ class Obex;
+ class ObexImpl : public ObexInterface, public QObject {
+ Q_OBJECT
+ public:
+ ObexImpl();
+ virtual ObexImpl();
+ QRESULT queryInterface( const QUuid&, QUnknownInterface** );
+ Q_REFCOUNT // for reference counting (macro )
+ private:
+ ulong ref;
+ Obex* m_obex; // obex lib
+ QCopChannel *m_chan;
+ private slots:
+ void slotMessage( const QCString&, const QByteArray& );
+ };
+};
+#endif