process.h
author insilmaril
Thu, 14 Sep 2006 11:38:17 +0000
changeset 383 bf5ba1bd4764
parent 2 608f976aa7bb
child 408 c2a05fa925a1
permissions -rw-r--r--
1.8.57 - more changes in history window, Note Editor is QT4 now
     1 #ifndef PROCESS_H
     2 #define PROCESS_H
     3 
     4 #include <q3process.h>
     5 #include <qstring.h>
     6 
     7 
     8 using namespace std;
     9 
    10 class Process:public Q3Process
    11 {
    12 	Q_OBJECT
    13 public:
    14     Process ();
    15 	~Process ();
    16 	void clear();
    17 	void waitFinished();
    18 	QString getErrout();
    19 	QString getStdout();
    20 	
    21 
    22 public slots:
    23 	virtual void readProcErrout();
    24 	virtual void readProcStdout();
    25 
    26 private:
    27 	QString errOut;
    28 	QString stdOut;
    29 };
    30 
    31 #endif