From b23314a1f3c272ba0590bbd1608f2827b932699e Mon Sep 17 00:00:00 2001 From: Gerhard Hoffmann Date: Tue, 18 Feb 2025 14:52:41 +0100 Subject: [PATCH] add verbose parameter --- common/include/command.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/common/include/command.h b/common/include/command.h index 66cd633..564d459 100644 --- a/common/include/command.h +++ b/common/include/command.h @@ -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);