162e1ca996
Logging can be enabled in release build like this: QT_LOGGING_RULES="fernschreiber.*=true" harbour-fernschreiber See https://doc.qt.io/qt-5/qloggingcategory.html for more details.
19 lines
340 B
C++
19 lines
340 B
C++
#ifndef PROCESSLAUNCHER_H
|
|
#define PROCESSLAUNCHER_H
|
|
|
|
#include <QObject>
|
|
|
|
class ProcessLauncher : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit ProcessLauncher(QObject *parent = nullptr);
|
|
|
|
Q_INVOKABLE bool launchProgram(const QString &program, const QStringList &arguments);
|
|
|
|
signals:
|
|
|
|
public slots:
|
|
};
|
|
|
|
#endif // PROCESSLAUNCHER_H
|