]> git.sven.stormbind.net Git - sven/vym.git/blob - src/vymprocess.h
New upstream version 2.9.22
[sven/vym.git] / src / vymprocess.h
1 #ifndef VYMPROCESS_H
2 #define VYMPROCESS_H
3
4 #include <QProcess>
5 #include <QString>
6
7 class VymProcess : public QProcess {
8     Q_OBJECT
9   public:
10     VymProcess();
11     ~VymProcess();
12     void clear();
13     void runScript(QString spath, QString fpath);
14     QString getErrout();
15     QString getStdout();
16
17   public slots:
18     virtual void readProcErrout();
19     virtual void readProcStdout();
20
21   private:
22     QString errOut;
23     QString stdOut;
24 };
25
26 #endif