#ifndef PROCESS_H #define PROCESS_H #include class Process : public QProcess { Q_OBJECT public: Process(QObject *parent = nullptr); ~Process(); }; #endif