summaryrefslogtreecommitdiff
path: root/core/obex/obexhandler.h
Side-by-side diff
Diffstat (limited to 'core/obex/obexhandler.h') (more/less context) (ignore whitespace changes)
-rw-r--r--core/obex/obexhandler.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/core/obex/obexhandler.h b/core/obex/obexhandler.h
index 230c4f0..de2232e 100644
--- a/core/obex/obexhandler.h
+++ b/core/obex/obexhandler.h
@@ -5,2 +5,3 @@
#include <qstring.h>
+#include "receiver.h"
@@ -23,3 +24,3 @@ namespace OpieObex {
void doSend(const QString&,const QString& );
- void doReceive(bool b);
+ void doReceive(RecType type, bool b);
void slotSent();
@@ -31,5 +32,5 @@ namespace OpieObex {
SendWidget* m_sender;
- Receiver* m_receiver;
- bool m_wasRec : 1;
-
+ Receiver* m_receiver[2]; //For IRDA and Bluetooth
+ bool m_wasRec[2];
+ RecType m_type; //receiver type (IRDA or Bluetooth)
};