#ifndef COMPUTEPROCESSWRAPPER_H #define COMPUTEPROCESSWRAPPER_H #include "LaunchOption.h" #include #include class ComputeProcessWrapper : public QObject { Q_OBJECT public: ComputeProcessWrapper(); LaunchOption launchOption; QProcess computeProcess; public slots: void doCompute(); signals: void newMessageIncoming(QString newMessage, bool isError); void computingFinished(bool isExitedNormally); private: void setProcess(); }; #endif // COMPUTEPROCESSWRAPPER_H