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