SSH: Streamline SshRemoteProcessRunner's output handling.

Make it just like SshRemoteProcess (and QProcess). The current
implementation annoyingly forces client code to establish additional
signal/slot connections, even if they only want to evaluate the output
at the end.

Change-Id: Id8c30dd156574d7d26d848d8e0705856a16d3747
Reviewed-by: hjk <qthjk@ovi.com>
This commit is contained in:
Christian Kandeler
2012-06-08 09:42:32 +02:00
committed by hjk
parent 303e67304e
commit 79de09f266
24 changed files with 111 additions and 181 deletions

View File

@@ -59,8 +59,8 @@ protected:
void stopDeployment();
private slots:
void handleStdout(const QByteArray &output);
void handleStderr(const QByteArray &output);
void handleStdout();
void handleStderr();
void handleProcessClosed(int exitStatus);
private: