author | hash <hash> | 2002-10-07 07:39:11 (UTC) |
---|---|---|
committer | hash <hash> | 2002-10-07 07:39:11 (UTC) |
commit | 4202539e8a50bad62e6ee0cbf3965e00e9ff156a (patch) (side-by-side diff) | |
tree | 689dbc6533626eac9a7eef118e32f29bcf040349 | |
parent | 2ff05a9340c34116723abba578b383e1bf958552 (diff) | |
download | opie-4202539e8a50bad62e6ee0cbf3965e00e9ff156a.zip opie-4202539e8a50bad62e6ee0cbf3965e00e9ff156a.tar.gz opie-4202539e8a50bad62e6ee0cbf3965e00e9ff156a.tar.bz2 |
returned to formal state
-rw-r--r-- | noncore/apps/opie-console/file_layer.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/noncore/apps/opie-console/file_layer.h b/noncore/apps/opie-console/file_layer.h index cfa149e..0bd0fd1 100644 --- a/noncore/apps/opie-console/file_layer.h +++ b/noncore/apps/opie-console/file_layer.h @@ -1,13 +1,12 @@ #ifndef OPIE_FILE_LAYER_H #define OPIE_FILE_LAYER_H #include "io_layer.h" -#include <opie/oprocess.h> class QFile; /** * this is the layer for sending files */ class FileTransferLayer : public QObject { Q_OBJECT @@ -21,21 +20,16 @@ public: public slots: /** * send a file over the layer */ virtual void sendFile( const QString& file ) = 0; virtual void sendFile( const QFile& ) = 0; -private slots: - void SzRecievedStdout(OProcess *, char *, int); - void SzRecievedStderr(OProcess *, char *, int); - void recievedStdin(QByteArray &); - signals: /** * sent the file */ void sent(); /** * an error occured @@ -49,13 +43,12 @@ signals: */ void progress( const QString& file, int progress ); protected: IOLayer* layer(); private: IOLayer* m_layer; - OProcess *proc; }; #endif |