summaryrefslogtreecommitdiff
path: root/noncore/apps/opie-console/sz_transfer.h
Unidiff
Diffstat (limited to 'noncore/apps/opie-console/sz_transfer.h') (more/less context) (show whitespace changes)
-rw-r--r--noncore/apps/opie-console/sz_transfer.h12
1 files changed, 9 insertions, 3 deletions
diff --git a/noncore/apps/opie-console/sz_transfer.h b/noncore/apps/opie-console/sz_transfer.h
index 778d1d3..825680d 100644
--- a/noncore/apps/opie-console/sz_transfer.h
+++ b/noncore/apps/opie-console/sz_transfer.h
@@ -6,28 +6,34 @@
6 6
7class SzTransfer : public FileTransferLayer { 7class SzTransfer : public FileTransferLayer {
8 8
9 Q_OBJECT 9 Q_OBJECT
10 10
11public: 11public:
12 enum Type {
13 SZ=0,
14 SX,
15 SY
16 };
12 17
13 SzTransfer( IOLayer * ); 18 SzTransfer( Type t, IOLayer * );
14 ~SzTransfer(); 19 ~SzTransfer();
15 20
16public slots: 21public slots:
17 /** 22 /**
18 * send a file over the layer 23 * send a file over the layer
19 */ 24 */
20 void sendFile( const QString& file ) = 0; 25 void sendFile( const QString& file ) ;
21 void sendFile( const QFile& ) = 0; 26 void sendFile( const QFile& );
22 27
23private slots: 28private slots:
24 void SzRecievedStdout(OProcess *, char *, int); 29 void SzRecievedStdout(OProcess *, char *, int);
25 void SzRecievedStderr(OProcess *, char *, int); 30 void SzRecievedStderr(OProcess *, char *, int);
26 void recievedStdin(QByteArray &); 31 void recievedStdin(QByteArray &);
27 32
28private: 33private:
29 OProcess *proc; 34 OProcess *proc;
35 Type m_t;
30 36
31}; 37};
32 38
33#endif 39#endif