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) (unidiff)
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 @@
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