summaryrefslogtreecommitdiff
authorzecke <zecke>2002-06-12 17:24:59 (UTC)
committer zecke <zecke>2002-06-12 17:24:59 (UTC)
commit40ea15ee51ade4c3975d91d91717752560044f35 (patch) (unidiff)
tree9e1f79ce7a3652ea1f85c84fbc7fbb6f7f856f72
parentd57ced2b9c8f3ac79bae54bef7d5026d24e2bb98 (diff)
downloadopie-40ea15ee51ade4c3975d91d91717752560044f35.zip
opie-40ea15ee51ade4c3975d91d91717752560044f35.tar.gz
opie-40ea15ee51ade4c3975d91d91717752560044f35.tar.bz2
Obex
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--core/applets/obex/obeximpl.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/core/applets/obex/obeximpl.h b/core/applets/obex/obeximpl.h
index d5159e1..09aa4b3 100644
--- a/core/applets/obex/obeximpl.h
+++ b/core/applets/obex/obeximpl.h
@@ -1,26 +1,31 @@
1 1
2#ifndef OpieObexImpl_H 2#ifndef OpieObexImpl_H
3#define OpieObexImpl_H 3#define OpieObexImpl_H
4 4
5#include <qobject.h> 5#include <qobject.h>
6#include "../obexinterface.h" 6#include "../obexinterface.h"
7#include <qpe/qcopenvelope_qws.h> 7#include <qpe/qcopenvelope_qws.h>
8 8
9namespace OpieObex { 9namespace OpieObex {
10 class Obex; 10 class Obex;
11 class ObexImpl : public QObject, public ObexInterface { 11 class ObexImpl : public QObject, public ObexInterface {
12 Q_OBJECT 12 Q_OBJECT
13 public: 13 public:
14 ObexImpl(); 14 ObexImpl();
15 virtual ~ObexImpl(); 15 virtual ~ObexImpl();
16 QRESULT queryInterface( const QUuid&, QUnknownInterface** ); 16 QRESULT queryInterface( const QUuid&, QUnknownInterface** );
17 Q_REFCOUNT // for reference counting (macro ) 17 Q_REFCOUNT // for reference counting (macro )
18 private: 18 private:
19 ulong ref; 19 ulong ref;
20 Obex* m_obex; // obex lib 20 Obex* m_obex; // obex lib
21 QCopChannel *m_chan; 21 QCopChannel *m_chan;
22 private slots: 22 private slots:
23 void slotMessage( const QCString&, const QByteArray& ); 23 void slotMessage( const QCString&, const QByteArray& );
24 void slotError(int );
25 void slotCurrentTry( unsigned int );
26 void slotDone(bool);
27 void slotReceivedFile(const QString & );
28 void slotSent();
24 }; 29 };
25}; 30};
26#endif 31#endif