summaryrefslogtreecommitdiff
path: root/core/applets/obex/obeximpl.h
authorharlekin <harlekin>2002-06-10 09:39:23 (UTC)
committer harlekin <harlekin>2002-06-10 09:39:23 (UTC)
commitca3838f3aa3bbfa3aba61f7aaa285b9be67ca426 (patch) (side-by-side diff)
treeb14274bbff3cd1140b9b1a1c84c2e97b712f1828 /core/applets/obex/obeximpl.h
parent81add8ce87168282bb56a15f0406f3fec75cf610 (diff)
downloadopie-ca3838f3aa3bbfa3aba61f7aaa285b9be67ca426.zip
opie-ca3838f3aa3bbfa3aba61f7aaa285b9be67ca426.tar.gz
opie-ca3838f3aa3bbfa3aba61f7aaa285b9be67ca426.tar.bz2
initial try
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 @@
+
+#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