author | insilmaril |
Fri Dec 29 13:52:17 2006 +0000 (2006-12-29) | |
changeset 413 | c3f7beb4e9f4 |
parent 2 | 608f976aa7bb |
child 429 | 69a4c16bd85b |
permissions | -rw-r--r-- |
1 #ifndef PROCESS_H
2 #define PROCESS_H
4 #include <QProcess>
5 #include <QString>
8 using namespace std;
10 class Process:public QProcess
11 {
12 Q_OBJECT
13 public:
14 Process ();
15 ~Process ();
16 void clear();
17 void waitFinished();
18 QString getErrout();
19 QString getStdout();
22 public slots:
23 virtual void readProcErrout();
24 virtual void readProcStdout();
26 private:
27 QString errOut;
28 QString stdOut;
29 };
31 #endif