summaryrefslogtreecommitdiff
path: root/noncore/apps/opie-console/test/senderui.h
Unidiff
Diffstat (limited to 'noncore/apps/opie-console/test/senderui.h') (more/less context) (show whitespace changes)
-rw-r--r--noncore/apps/opie-console/test/senderui.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/noncore/apps/opie-console/test/senderui.h b/noncore/apps/opie-console/test/senderui.h
index bc69f5d..f6230cc 100644
--- a/noncore/apps/opie-console/test/senderui.h
+++ b/noncore/apps/opie-console/test/senderui.h
@@ -6,6 +6,7 @@
6#include "sender.h" 6#include "sender.h"
7 7
8class IOSerial; 8class IOSerial;
9class SzTransfer;
9class SenderUI : public Sender { 10class SenderUI : public Sender {
10 Q_OBJECT 11 Q_OBJECT
11public: 12public:
@@ -13,10 +14,13 @@ public:
13 ~SenderUI(); 14 ~SenderUI();
14 15
15public slots: 16public slots:
17 void slotSendFile();
16 void slotSend(); 18 void slotSend();
17 void got(const QByteArray& ); 19 void got(const QByteArray& );
20 void fileTransComplete();
18private: 21private:
19 IOSerial* ser; 22 IOSerial* ser;
23 SzTransfer* sz;
20}; 24};
21 25
22 26