You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
368 B
C++
21 lines
368 B
C++
#ifndef QTPPROCESS_H
|
|
#define QTPPROCESS_H
|
|
|
|
#include <QtCore\qprocess.h>
|
|
|
|
class QTpProcess : public QProcess
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
QTpProcess(QObject *parent = NULL);
|
|
~QTpProcess();
|
|
private Q_SLOTS:
|
|
void OnFinished(int exitCode, QProcess::ExitStatus exitStatus);
|
|
void OnError(QProcess::ProcessError error);
|
|
private:
|
|
|
|
};
|
|
|
|
#endif // QTPPROCESS_H
|