add verbose parameter

This commit is contained in:
Gerhard Hoffmann 2025-02-18 14:52:41 +01:00
parent 9f1f41e4b6
commit b23314a1f3

View File

@ -16,6 +16,7 @@ class Command : public QObject {
int m_waitForStartTimeout;
int m_waitForFinishTimeout;
bool m_verbose;
int m_exitCode;
QString m_workingDirectory;
@ -27,6 +28,7 @@ public:
Command(QString command,
QStringList args,
QString workingDirectory,
bool verbose = true,
int start_timeout = 100000,
int finish_timeout = 100000);